aboutsummaryrefslogtreecommitdiff
path: root/migrations/versions/fa10b0bdd045_add_bio_column_to_user_table.py
blob: 2d8396263810f22aa2d7a63fac6c6194d4a5002a (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
"""add bio column to user table

Revision ID: fa10b0bdd045
Revises: 8bf5694c0b9e
Create Date: 2016-10-07 10:43:04.428178

"""

# revision identifiers, used by Alembic.
revision = 'fa10b0bdd045'
down_revision = '8bf5694c0b9e'
branch_labels = None
depends_on = None

from alembic import op
import sqlalchemy as sa


def upgrade():
    op.add_column('user', sa.Column('bio',
                                        sa.String(5000), default=""))


def downgrade():
    op.drop_column('user', 'bio')
bgstack15