176d9148f7c_.py 740 B

12345678910111213141516171819202122232425262728
  1. """empty message
  2. Revision ID: 176d9148f7c
  3. Revises: 213ec18f5d8
  4. Create Date: 2014-09-25 22:58:50.961489
  5. """
  6. # revision identifiers, used by Alembic.
  7. revision = '176d9148f7c'
  8. down_revision = '213ec18f5d8'
  9. from alembic import op
  10. import sqlalchemy as sa
  11. def upgrade():
  12. ### commands auto generated by Alembic - please adjust! ###
  13. op.add_column('participant', sa.Column('comment', sa.String(), nullable=True))
  14. op.add_column('participant', sa.Column('country', sa.String(), nullable=True))
  15. ### end Alembic commands ###
  16. def downgrade():
  17. ### commands auto generated by Alembic - please adjust! ###
  18. op.drop_column('participant', 'country')
  19. op.drop_column('participant', 'comment')
  20. ### end Alembic commands ###