"""update models to database documentation 1.2 Revision ID: 08f2f998a4f6 Revises: db3681fb9273 Create Date: 2020-07-02 18:45:23.912159 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = '08f2f998a4f6' down_revision = 'db3681fb9273' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('location', sa.Column('id', sa.Integer(), nullable=False), sa.Column('player_id', sa.Integer(), nullable=False), sa.Column('longitude', sa.Numeric(precision=15, scale=10, asdecimal=False), nullable=False), sa.Column('latitude', sa.Numeric(precision=15, scale=10, asdecimal=False), nullable=False), sa.Column('timestamp', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=False), sa.ForeignKeyConstraint(['player_id'], ['player.id'], ), sa.PrimaryKeyConstraint('id') ) op.create_table('notification', sa.Column('id', sa.Integer(), nullable=False), sa.Column('game_id', sa.Integer(), nullable=False), sa.Column('message', sa.Text(), nullable=False), sa.Column('type', sa.String(length=64), nullable=False), sa.Column('timestamp', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=False), sa.ForeignKeyConstraint(['game_id'], ['game.id'], ), sa.PrimaryKeyConstraint('id') ) op.create_table('objective', sa.Column('id', sa.Integer(), nullable=False), sa.Column('name', sa.String(length=64), nullable=False), sa.Column('game_id', sa.Integer(), nullable=False), sa.Column('hash', sa.String(length=128), nullable=False), sa.Column('longitude', sa.Numeric(precision=15, scale=10, asdecimal=False), nullable=True), sa.Column('latitude', sa.Numeric(precision=15, scale=10, asdecimal=False), nullable=True), sa.ForeignKeyConstraint(['game_id'], ['game.id'], ), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('hash') ) op.create_table('player_caught_player', sa.Column('catching_player_id', sa.Integer(), nullable=True), sa.Column('caught_player_id', sa.Integer(), nullable=True), sa.Column('photo_reference', sa.String(length=128), nullable=False), sa.Column('timestamp', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=False), sa.ForeignKeyConstraint(['catching_player_id'], ['player.id'], ), sa.ForeignKeyConstraint(['caught_player_id'], ['player.id'], ), sa.UniqueConstraint('photo_reference') ) op.create_table('player_found_objective', sa.Column('game_id', sa.Integer(), nullable=False), sa.Column('player_id', sa.Integer(), nullable=False), sa.Column('timestamp', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=False), sa.ForeignKeyConstraint(['game_id'], ['game.id'], ), sa.ForeignKeyConstraint(['player_id'], ['player.id'], ), sa.PrimaryKeyConstraint('game_id', 'player_id') ) op.create_table('notification_player', sa.Column('notification_id', sa.Integer(), nullable=False), sa.Column('player_id', sa.Integer(), nullable=False), sa.Column('been_shown', sa.Boolean(), server_default='True', nullable=False), sa.ForeignKeyConstraint(['notification_id'], ['notification.id'], ), sa.ForeignKeyConstraint(['player_id'], ['player.id'], ), sa.PrimaryKeyConstraint('notification_id', 'player_id') ) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### op.drop_table('notification_player') op.drop_table('player_found_objective') op.drop_table('player_caught_player') op.drop_table('objective') op.drop_table('notification') op.drop_table('location') # ### end Alembic commands ###