mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
12 lines
186 B
PL/PgSQL
Executable file
12 lines
186 B
PL/PgSQL
Executable file
-- Type: UNDO
|
|
-- Name: add_ai_summary_tables
|
|
-- Description: Add tables for generating AI summaries
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE omnivore.ai_summaries;
|
|
|
|
DROP TABLE omnivore.ai_prompts;
|
|
|
|
|
|
COMMIT;
|