diff options
author | 2020-08-25 13:23:32 +0100 | |
---|---|---|
committer | 2020-08-25 13:23:32 +0100 | |
commit | 21f0a8abafde86d27033d72b817bb2aad4938292 (patch) | |
tree | 242bb799d7cf4f8e467824d24f331c10fcefdaae /alembic/script.py.mako | |
parent | Add config files to gitignore (diff) |
Add Alembic
Diffstat (limited to 'alembic/script.py.mako')
-rw-r--r-- | alembic/script.py.mako | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/alembic/script.py.mako b/alembic/script.py.mako new file mode 100644 index 0000000..2c01563 --- /dev/null +++ b/alembic/script.py.mako @@ -0,0 +1,24 @@ +"""${message} + +Revision ID: ${up_revision} +Revises: ${down_revision | comma,n} +Create Date: ${create_date} + +""" +from alembic import op +import sqlalchemy as sa +${imports if imports else ""} + +# revision identifiers, used by Alembic. +revision = ${repr(up_revision)} +down_revision = ${repr(down_revision)} +branch_labels = ${repr(branch_labels)} +depends_on = ${repr(depends_on)} + + +def upgrade(): + ${upgrades if upgrades else "pass"} + + +def downgrade(): + ${downgrades if downgrades else "pass"} |