aboutsummaryrefslogtreecommitdiff
path: root/migrations/versions/8bf5694c0b9e_add_column_automatic_crawling_to_the_.py
diff options
context:
space:
mode:
Diffstat (limited to 'migrations/versions/8bf5694c0b9e_add_column_automatic_crawling_to_the_.py')
-rw-r--r--migrations/versions/8bf5694c0b9e_add_column_automatic_crawling_to_the_.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/migrations/versions/8bf5694c0b9e_add_column_automatic_crawling_to_the_.py b/migrations/versions/8bf5694c0b9e_add_column_automatic_crawling_to_the_.py
index 5728449a..477e1376 100644
--- a/migrations/versions/8bf5694c0b9e_add_column_automatic_crawling_to_the_.py
+++ b/migrations/versions/8bf5694c0b9e_add_column_automatic_crawling_to_the_.py
@@ -7,8 +7,8 @@ Create Date: 2016-10-06 13:47:32.784711
"""
# revision identifiers, used by Alembic.
-revision = '8bf5694c0b9e'
-down_revision = '5553a6c05fa7'
+revision = "8bf5694c0b9e"
+down_revision = "5553a6c05fa7"
branch_labels = None
depends_on = None
@@ -17,9 +17,8 @@ import sqlalchemy as sa
def upgrade():
- op.add_column('user', sa.Column('automatic_crawling',
- sa.Boolean(), default=True))
+ op.add_column("user", sa.Column("automatic_crawling", sa.Boolean(), default=True))
def downgrade():
- op.drop_column('user', 'automatic_crawling')
+ op.drop_column("user", "automatic_crawling")
bgstack15