mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-22 22:12:24 +01:00
Add migration to add hard/softdeps to packagepropertykeys
This commit is contained in:
parent
079775f5f6
commit
f93394df75
30
migrations/versions/3f4d7cd8401f_.py
Normal file
30
migrations/versions/3f4d7cd8401f_.py
Normal 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 ###
|
Loading…
Reference in New Issue
Block a user