From f93ff38767e23602108f86992c453f7973dd8bd0 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Mon, 4 Mar 2019 15:06:54 +0100 Subject: 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. --- migrations/00000000000000_diesel_initial_setup/down.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 migrations/00000000000000_diesel_initial_setup/down.sql (limited to 'migrations/00000000000000_diesel_initial_setup/down.sql') 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(); -- cgit v1.2.3