From 2e5a241777ef0bb0d76420d39bf3be41e16e042a Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Thu, 18 Feb 2016 08:59:13 +0100 Subject: New management of the token for the account confirmation. --- ...79311a_removed_activation_key_from_the_user_.py | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 migrations/versions/ac35c979311a_removed_activation_key_from_the_user_.py (limited to 'migrations/versions/ac35c979311a_removed_activation_key_from_the_user_.py') diff --git a/migrations/versions/ac35c979311a_removed_activation_key_from_the_user_.py b/migrations/versions/ac35c979311a_removed_activation_key_from_the_user_.py new file mode 100644 index 00000000..deeb6037 --- /dev/null +++ b/migrations/versions/ac35c979311a_removed_activation_key_from_the_user_.py @@ -0,0 +1,28 @@ +"""removed activation_key from the user table and add enabled column + +Revision ID: ac35c979311a +Revises: 661199d8768a +Create Date: 2016-02-18 08:54:43.786641 + +""" + +# revision identifiers, used by Alembic. +revision = 'ac35c979311a' +down_revision = '661199d8768a' +branch_labels = None +depends_on = None + +from alembic import op +import sqlalchemy as sa + + +def upgrade(): + op.drop_column('user', 'activation_key') + op.add_column('user', sa.Column('enabled', sa.Boolean(), nullable=False, + default=False)) + + +def downgrade(): + op.drop_column('user', 'enabled') + op.add_column('user', sa.Column('activation_key', sa.String(), + nullable=False, default='')) -- cgit