aboutsummaryrefslogtreecommitdiff
path: root/migrations/versions/ac35c979311a_removed_activation_key_from_the_user_.py
blob: 644720b2f9372015e61d8537c7aee1a7969b0267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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(), default=False))


def downgrade():
    op.drop_column("user", "enabled")
    op.add_column(
        "user", sa.Column("activation_key", sa.String(), nullable=False, default="")
    )
bgstack15