aboutsummaryrefslogtreecommitdiff
path: root/sqitch/revert/channel_news_tables.sql
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2019-11-16 08:55:54 +0000
committerChristopher Baines <mail@cbaines.net>2019-11-21 19:56:19 +0000
commit3ef99acc79d4ee8a853364a86bb6a26debcebdb1 (patch)
tree98ec84d085c566979606207e33e904abbb277f04 /sqitch/revert/channel_news_tables.sql
parent66d726f1fd92bd2cdd953d4e8d05a4dc5e44e732 (diff)
downloaddata-service-3ef99acc79d4ee8a853364a86bb6a26debcebdb1.tar
data-service-3ef99acc79d4ee8a853364a86bb6a26debcebdb1.tar.gz
Add a new channel-news module, along with tables the relevant data
Diffstat (limited to 'sqitch/revert/channel_news_tables.sql')
-rw-r--r--sqitch/revert/channel_news_tables.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/sqitch/revert/channel_news_tables.sql b/sqitch/revert/channel_news_tables.sql
new file mode 100644
index 0000000..c623319
--- /dev/null
+++ b/sqitch/revert/channel_news_tables.sql
@@ -0,0 +1,11 @@
+-- Revert guix-data-service:channel_news_tables from pg
+
+BEGIN;
+
+DROP TABLE guix_revision_channel_news_entries;
+DROP TABLE channel_news_entry_titles;
+DROP TABLE channel_news_entry_bodies;
+DROP TABLE channel_news_entry_text;
+DROP TABLE channel_news_entries;
+
+COMMIT;