diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-04-08T13·48+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-04-08T13·48+0200 |
commit | 042eb88fd74033b9b606189b626f3f0a11a3e2b1 (patch) | |
tree | 7e7643441c58cd6b77f674d2e2a3b5aac86ddb9e /migrations/00000000000000_diesel_initial_setup/down.sql | |
parent | 106ade6e41ff0abe269fca99e332d404b2c549c7 (diff) |
feat(migrations): Add posts & threads tables
Diffstat (limited to 'migrations/00000000000000_diesel_initial_setup/down.sql')
-rw-r--r-- | migrations/00000000000000_diesel_initial_setup/down.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/migrations/00000000000000_diesel_initial_setup/down.sql b/migrations/00000000000000_diesel_initial_setup/down.sql new file mode 100644 index 000000000000..a9f526091194 --- /dev/null +++ b/migrations/00000000000000_diesel_initial_setup/down.sql @@ -0,0 +1,6 @@ +-- This file was automatically created by Diesel to setup helper functions +-- and other internal bookkeeping. This file is safe to edit, any future +-- changes will be added to existing projects as new migrations. + +DROP FUNCTION IF EXISTS diesel_manage_updated_at(_tbl regclass); +DROP FUNCTION IF EXISTS diesel_set_updated_at(); |