DotaNoobs main site.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
608 B

  1. """empty message
  2. Revision ID: 1c90e0fd276a
  3. Revises: a6f7dd522b7
  4. Create Date: 2014-06-24 19:01:39.358682
  5. """
  6. # revision identifiers, used by Alembic.
  7. revision = '1c90e0fd276a'
  8. down_revision = 'a6f7dd522b7'
  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('user', sa.Column('winrate_data', sa.Json(), nullable=True))
  14. ### end Alembic commands ###
  15. def downgrade():
  16. ### commands auto generated by Alembic - please adjust! ###
  17. op.drop_column('user', 'winrate_data')
  18. ### end Alembic commands ###