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