diff --git a/migrations/versions/3f4d7cd8401f_.py b/migrations/versions/3f4d7cd8401f_.py new file mode 100644 index 00000000..0f17bf92 --- /dev/null +++ b/migrations/versions/3f4d7cd8401f_.py @@ -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 ###