diff --git a/alembic/versions/3bac184298c9_nullable_bankid.py b/alembic/versions/3bac184298c9_nullable_bankid.py new file mode 100644 index 0000000..074aa97 --- /dev/null +++ b/alembic/versions/3bac184298c9_nullable_bankid.py @@ -0,0 +1,28 @@ +"""nullable_bankid + +Revision ID: 3bac184298c9 +Revises: a5eaf1296414 +Create Date: 2016-07-20 15:33:20.377382 + +""" + +# revision identifiers, used by Alembic. +revision = '3bac184298c9' +down_revision = 'a5eaf1296414' +branch_labels = None +depends_on = None + +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql + +def upgrade(): + op.alter_column('ofxsource', 'bankid', + existing_type=sa.VARCHAR(length=255), + nullable=True) + + +def downgrade(): + op.alter_column('ofxsource', 'bankid', + existing_type=sa.VARCHAR(length=255), + nullable=False) diff --git a/vanth/tables.py b/vanth/tables.py index 41fc9c7..8b49b65 100644 --- a/vanth/tables.py +++ b/vanth/tables.py @@ -45,7 +45,7 @@ CreditCard = table('credit_card', OFXSource = table('ofxsource', Column('name', String(255), nullable=False), # The name of the institution such as 'America First Credit Union' Column('fid', String(255), nullable=False), # The FID of the institution, such as 54324 - Column('bankid', String(255), nullable=False), # The bank ID of the institution such as 324377516. + Column('bankid', String(255), nullable=True), # The bank ID of the institution such as 324377516. # This may be a routing number Column('url', String(4096), nullable=False), # The base URL for the ofxsource UniqueConstraint('fid', name='uq_ofxsource_fid'),