From aa5bfccb1fb8efe2f0c5ee040543ef5493ceaf59 Mon Sep 17 00:00:00 2001 From: David Lenwell Date: Thu, 31 Oct 2013 01:59:57 -0700 Subject: [PATCH] added contact name to the vendor table --- .../1d6540fc6279_added_vendor_contact.py | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 alembic/versions/1d6540fc6279_added_vendor_contact.py diff --git a/alembic/versions/1d6540fc6279_added_vendor_contact.py b/alembic/versions/1d6540fc6279_added_vendor_contact.py new file mode 100644 index 00000000..34a501bd --- /dev/null +++ b/alembic/versions/1d6540fc6279_added_vendor_contact.py @@ -0,0 +1,26 @@ +"""added vendor contact name + +Revision ID: 1d6540fc6279 +Revises: 3790aed42558 +Create Date: 2013-10-31 01:30:12.489026 + +""" + +# revision identifiers, used by Alembic. +revision = '1d6540fc6279' +down_revision = '3790aed42558' + +from alembic import op +import sqlalchemy as sa + + +def upgrade(): + ### commands auto generated by Alembic - please adjust! ### + op.add_column('vendor', sa.Column('contact_name', sa.String(length=120), nullable=True)) + ### end Alembic commands ### + + +def downgrade(): + ### commands auto generated by Alembic - please adjust! ### + op.drop_column('vendor', 'contact_name') + ### end Alembic commands ###