10 lines
192 B
PL/PgSQL
Executable File
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;
|