def upgrade():
with op.batch_alter_table('products', schema=None) as batch_op:
batch_op.add_column(sa.Column('surrogate_key',
sa.String(length=32),
nullable=True))