aboutsummaryrefslogtreecommitdiff
path: root/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'migrations')
-rw-r--r--migrations/versions/8bf5694c0b9e_add_column_automatic_crawling_to_the_.py25
1 files changed, 25 insertions, 0 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
new file mode 100644
index 00000000..5728449a
--- /dev/null
+++ b/migrations/versions/8bf5694c0b9e_add_column_automatic_crawling_to_the_.py
@@ -0,0 +1,25 @@
+"""add column automatic_crawling to the user table
+
+Revision ID: 8bf5694c0b9e
+Revises: 5553a6c05fa7
+Create Date: 2016-10-06 13:47:32.784711
+
+"""
+
+# revision identifiers, used by Alembic.
+revision = '8bf5694c0b9e'
+down_revision = '5553a6c05fa7'
+branch_labels = None
+depends_on = None
+
+from alembic import op
+import sqlalchemy as sa
+
+
+def upgrade():
+ op.add_column('user', sa.Column('automatic_crawling',
+ sa.Boolean(), default=True))
+
+
+def downgrade():
+ op.drop_column('user', 'automatic_crawling')
bgstack15