aboutsummaryrefslogtreecommitdiff
path: root/src/migrations/script.py.mako
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-03 19:23:39 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-03 19:23:39 +0100
commita065a2c873e80ea933b5cb6ef542ad7a759714e1 (patch)
tree0b2f3e61764afc8589187383d7751bf84181650e /src/migrations/script.py.mako
parentalembic patch (diff)
downloadnewspipe-a065a2c873e80ea933b5cb6ef542ad7a759714e1.tar.gz
newspipe-a065a2c873e80ea933b5cb6ef542ad7a759714e1.tar.bz2
newspipe-a065a2c873e80ea933b5cb6ef542ad7a759714e1.zip
carpy tests for alembic...
Diffstat (limited to 'src/migrations/script.py.mako')
-rwxr-xr-xsrc/migrations/script.py.mako22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/migrations/script.py.mako b/src/migrations/script.py.mako
deleted file mode 100755
index 95702017..00000000
--- a/src/migrations/script.py.mako
+++ /dev/null
@@ -1,22 +0,0 @@
-"""${message}
-
-Revision ID: ${up_revision}
-Revises: ${down_revision}
-Create Date: ${create_date}
-
-"""
-
-# revision identifiers, used by Alembic.
-revision = ${repr(up_revision)}
-down_revision = ${repr(down_revision)}
-
-from alembic import op
-import sqlalchemy as sa
-${imports if imports else ""}
-
-def upgrade():
- ${upgrades if upgrades else "pass"}
-
-
-def downgrade():
- ${downgrades if downgrades else "pass"}
bgstack15