Files
omnivore/packages/db/migrations/0097.undo.search_history.sql
2022-10-10 17:44:55 +08:00

10 lines
192 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: search_history
-- Description: Create search_history table which contains searched keyword and timestamp
BEGIN;
DROP TABLE IF EXISTS omnivore.search_history;
COMMIT;