🔥 Add a migration for remove unused tables.

This commit is contained in:
Andrey Antukh 2020-11-19 17:28:02 +01:00 committed by Alonso Torres
parent fca48e39ee
commit f5967c3c0a
2 changed files with 6 additions and 0 deletions

View file

@ -110,6 +110,9 @@
{:name "0031-add-conversation-related-tables"
:fn (mg/resource "app/migrations/sql/0031-add-conversation-related-tables.sql")}
{:name "0032-del-unused-tables"
:fn (mg/resource "app/migrations/sql/0032-del-unused-tables.sql")}
]})
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

View file

@ -0,0 +1,3 @@
DROP TABLE color;
DROP TABLE page_change;
DROP TABLE page_version;