8 lines
305 B
SQL
8 lines
305 B
SQL
-- Drop articles table and its indexes
|
|
DROP INDEX IF EXISTS idx_articles_read_at;
|
|
DROP INDEX IF EXISTS idx_articles_source_type;
|
|
DROP INDEX IF EXISTS idx_articles_processing_status;
|
|
DROP INDEX IF EXISTS idx_articles_added_at;
|
|
DROP INDEX IF EXISTS idx_articles_published_at;
|
|
DROP TABLE IF EXISTS articles;
|