aboutsummaryrefslogtreecommitdiff
path: root/migrations
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-03-01 23:04:32 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-03-01 23:04:32 +0100
commit300f3731151c1c52303606a5ae55622e7536129b (patch)
treeab88b9f494e76afcf8c4f2aae9d4b6068dd47e88 /migrations
parentbegin integration of the new architecture (diff)
downloadnewspipe-300f3731151c1c52303606a5ae55622e7536129b.tar.gz
newspipe-300f3731151c1c52303606a5ae55622e7536129b.tar.bz2
newspipe-300f3731151c1c52303606a5ae55622e7536129b.zip
fix
Diffstat (limited to 'migrations')
-rw-r--r--migrations/versions/2472eddbf44b_update_of_the_user_model.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/migrations/versions/2472eddbf44b_update_of_the_user_model.py b/migrations/versions/2472eddbf44b_update_of_the_user_model.py
index e0974015..a0194090 100644
--- a/migrations/versions/2472eddbf44b_update_of_the_user_model.py
+++ b/migrations/versions/2472eddbf44b_update_of_the_user_model.py
@@ -17,7 +17,6 @@ import sqlalchemy as sa
def upgrade():
- op.drop_column('user', 'roles')
op.drop_column('user', 'enabled')
op.add_column('user', sa.Column('is_active', sa.Boolean(), default=False))
op.add_column('user', sa.Column('is_admin', sa.Boolean(), default=False))
bgstack15