From eeeb2e620ca20aaef953cc1bc77fd64c72d76c75 Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Thu, 18 Dec 2014 13:22:13 -0500 Subject: [PATCH] move slackwebhook migration from tools to util tools isn't shipped inside of the container because it contains private keys --- .../versions/5b84373e5db_convert_slack_webhook_data.py | 2 +- {tools => util}/migrateslackwebhook.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {tools => util}/migrateslackwebhook.py (100%) diff --git a/data/migrations/versions/5b84373e5db_convert_slack_webhook_data.py b/data/migrations/versions/5b84373e5db_convert_slack_webhook_data.py index 87aaf84a3..a117fd2b1 100644 --- a/data/migrations/versions/5b84373e5db_convert_slack_webhook_data.py +++ b/data/migrations/versions/5b84373e5db_convert_slack_webhook_data.py @@ -13,7 +13,7 @@ down_revision = '1c5b738283a5' from alembic import op import sqlalchemy as sa -from tools.migrateslackwebhook import run_slackwebhook_migration +from util.migrateslackwebhook import run_slackwebhook_migration def upgrade(tables): diff --git a/tools/migrateslackwebhook.py b/util/migrateslackwebhook.py similarity index 100% rename from tools/migrateslackwebhook.py rename to util/migrateslackwebhook.py