aboutsummaryrefslogtreecommitdiff
path: root/alembic/versions
diff options
context:
space:
mode:
Diffstat (limited to 'alembic/versions')
-rw-r--r--alembic/versions/48f561c0ce6_add_column_entry_id.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/alembic/versions/48f561c0ce6_add_column_entry_id.py b/alembic/versions/48f561c0ce6_add_column_entry_id.py
deleted file mode 100644
index 3f52a7a9..00000000
--- a/alembic/versions/48f561c0ce6_add_column_entry_id.py
+++ /dev/null
@@ -1,24 +0,0 @@
-"""add column entry_id
-
-Revision ID: 48f561c0ce6
-Revises:
-Create Date: 2015-02-18 21:17:19.346998
-
-"""
-
-# revision identifiers, used by Alembic.
-revision = '48f561c0ce6'
-down_revision = None
-branch_labels = None
-depends_on = None
-
-from alembic import op
-import sqlalchemy as sa
-
-
-def upgrade():
- op.add_column('article', sa.Column('entry_id', sa.String(), nullable=True))
-
-
-def downgrade():
- op.drop_column('article', 'entry_id')
bgstack15