From c8122e1981527a716639561cc3f880764f06387b Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Thu, 6 Oct 2016 11:09:21 +0200 Subject: The user can now add its twitter page. --- ...6c05fa7_add_column_twitter_in_the_user_table.py | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 migrations/versions/5553a6c05fa7_add_column_twitter_in_the_user_table.py (limited to 'migrations') diff --git a/migrations/versions/5553a6c05fa7_add_column_twitter_in_the_user_table.py b/migrations/versions/5553a6c05fa7_add_column_twitter_in_the_user_table.py new file mode 100644 index 00000000..7c7132a8 --- /dev/null +++ b/migrations/versions/5553a6c05fa7_add_column_twitter_in_the_user_table.py @@ -0,0 +1,25 @@ +"""add column twitter in the user table + +Revision ID: 5553a6c05fa7 +Revises: f700c4237e9d +Create Date: 2016-10-06 11:02:41.356322 + +""" + +# revision identifiers, used by Alembic. +revision = '5553a6c05fa7' +down_revision = 'f700c4237e9d' +branch_labels = None +depends_on = None + +from alembic import op +import sqlalchemy as sa + + +def upgrade(): + op.add_column('user', sa.Column('twitter', + sa.String(), default="")) + + +def downgrade(): + op.drop_column('user', 'twitter') -- cgit