10 lines
149 B
PL/PgSQL
Executable File
10 lines
149 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: popular_read
|
|
-- Description: Create omnivore.popular_read table
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE IF EXISTS omnivore.popular_read;
|
|
|
|
COMMIT;
|