Add migration to add hard/softdeps to packagepropertykeys

This commit is contained in:
rubenwardy 2018-05-25 17:56:17 +01:00
parent 079775f5f6
commit f93394df75
No known key found for this signature in database
GPG Key ID: A1E29D52FF81513C
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
"""empty message
Revision ID: 3f4d7cd8401f
Revises: 13113e5710da
Create Date: 2018-05-25 17:53:13.215127
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '3f4d7cd8401f'
down_revision = '13113e5710da'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
conn = op.get_bind()
conn.execute("ALTER TYPE packagepropertykey ADD VALUE 'harddeps'")
conn.execute("ALTER TYPE packagepropertykey ADD VALUE 'softdeps'")
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###