f6ff0d6ca0
This change ensures that the tables in the database during migration have at least one row of "real" data, which should help catch issues in the future where we forget to set column defaults and other such schema oversights that can only be truly tested with non-empty tables Fixes https://jira.coreos.com/browse/QUAY-913
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
"""Add disabled datetime to trigger
|
|
|
|
Revision ID: 87fbbc224f10
|
|
Revises: 17aff2e1354e
|
|
Create Date: 2017-10-24 14:06:37.658705
|
|
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '87fbbc224f10'
|
|
down_revision = '17aff2e1354e'
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
from sqlalchemy.dialects import mysql
|
|
|
|
def upgrade(tables, tester):
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.add_column('repositorybuildtrigger', sa.Column('disabled_datetime', sa.DateTime(), nullable=True))
|
|
op.create_index('repositorybuildtrigger_disabled_datetime', 'repositorybuildtrigger', ['disabled_datetime'], unique=False)
|
|
# ### end Alembic commands ###
|
|
|
|
# ### population of test data ### #
|
|
tester.populate_column('repositorybuildtrigger', 'disabled_datetime', tester.TestDataType.DateTime)
|
|
# ### end population of test data ### #
|
|
|
|
|
|
def downgrade(tables, tester):
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_index('repositorybuildtrigger_disabled_datetime', table_name='repositorybuildtrigger')
|
|
op.drop_column('repositorybuildtrigger', 'disabled_datetime')
|
|
# ### end Alembic commands ###
|