From c8599493e5d38b5cca235a7e31424155e4beeccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 18 Nov 2015 15:46:06 +0100 Subject: [PATCH] debian: fix migrate call (it's not multitenant) --- debian/scrutiny.init | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/scrutiny.init b/debian/scrutiny.init index 62473be..0701120 100644 --- a/debian/scrutiny.init +++ b/debian/scrutiny.init @@ -120,8 +120,8 @@ do_reload() { } do_migrate() { - log_action_msg "Applying migrations (migrate_schemas).." - su $USER -s /bin/sh -p -c "$MANAGE_SCRIPT migrate_schemas" + log_action_msg "Applying migrations (migrate).." + su $USER -s /bin/sh -p -c "$MANAGE_SCRIPT migrate" log_action_msg "done" }