aboutsummaryrefslogtreecommitdiffstats
path: root/migrations/00000000000000_diesel_initial_setup/down.sql
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2019-03-04 15:06:54 +0100
committerHarald Eilertsen <haraldei@anduin.net>2019-03-04 15:06:54 +0100
commitf93ff38767e23602108f86992c453f7973dd8bd0 (patch)
tree78cd8d2784e494d81f341983fffa73e9e845479f /migrations/00000000000000_diesel_initial_setup/down.sql
parent59a44cd2629b424aa2723ba9f502bd7e455c6a1b (diff)
downloadramaskrik-social-f93ff38767e23602108f86992c453f7973dd8bd0.tar.gz
ramaskrik-social-f93ff38767e23602108f86992c453f7973dd8bd0.tar.bz2
ramaskrik-social-f93ff38767e23602108f86992c453f7973dd8bd0.zip
Set up database and connection pool with rocket_contrib::databases.
Set the env var DATABASE_URL before running the server. A .env file in the root of the project is also supported.
Diffstat (limited to 'migrations/00000000000000_diesel_initial_setup/down.sql')
-rw-r--r--migrations/00000000000000_diesel_initial_setup/down.sql6
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 0000000..a9f5260
--- /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();