From c4eadb099283af409b13146554abf9e5a0cb49a6 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Fri, 7 Oct 2016 10:59:54 +0200 Subject: Some other new update for the public profile page. --- .../fa10b0bdd045_add_bio_column_to_user_table.py | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 migrations/versions/fa10b0bdd045_add_bio_column_to_user_table.py (limited to 'migrations') diff --git a/migrations/versions/fa10b0bdd045_add_bio_column_to_user_table.py b/migrations/versions/fa10b0bdd045_add_bio_column_to_user_table.py new file mode 100644 index 00000000..2d839626 --- /dev/null +++ b/migrations/versions/fa10b0bdd045_add_bio_column_to_user_table.py @@ -0,0 +1,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') -- cgit