diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-03-01 23:04:32 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-03-01 23:04:32 +0100 |
commit | 300f3731151c1c52303606a5ae55622e7536129b (patch) | |
tree | ab88b9f494e76afcf8c4f2aae9d4b6068dd47e88 /migrations | |
parent | begin integration of the new architecture (diff) | |
download | newspipe-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.py | 1 |
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)) |