Skip to content

Commit 61abd1c

Browse files
migration
1 parent 28af882 commit 61abd1c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/postgres-database/src/simcore_postgres_database/migration/versions/4d007819e61a_add_license_type_to_pricing_plan.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Create Date: 2024-12-09 14:25:45.024814+00:00
66
77
"""
8+
import sqlalchemy as sa
89
from alembic import op
910

1011
# revision identifiers, used by Alembic.
@@ -15,9 +16,7 @@
1516

1617

1718
def upgrade():
18-
# ### commands auto generated by Alembic - please adjust! ###
19-
op.execute("ALTER TYPE pricingplanclassification ADD VALUE 'LICENSE'")
20-
# ### end Alembic commands ###
19+
op.execute(sa.DDL("ALTER TYPE pricingplanclassification ADD VALUE 'LICENSE'"))
2120

2221

2322
def downgrade():

0 commit comments

Comments
 (0)