diff --git a/packages/postgres-database/src/simcore_postgres_database/migration/versions/4d007819e61a_add_license_type_to_pricing_plan.py b/packages/postgres-database/src/simcore_postgres_database/migration/versions/4d007819e61a_add_license_type_to_pricing_plan.py index 652417fa06a..03b117ca485 100644 --- a/packages/postgres-database/src/simcore_postgres_database/migration/versions/4d007819e61a_add_license_type_to_pricing_plan.py +++ b/packages/postgres-database/src/simcore_postgres_database/migration/versions/4d007819e61a_add_license_type_to_pricing_plan.py @@ -5,6 +5,7 @@ Create Date: 2024-12-09 14:25:45.024814+00:00 """ +import sqlalchemy as sa from alembic import op # revision identifiers, used by Alembic. @@ -15,9 +16,7 @@ def upgrade(): - # ### commands auto generated by Alembic - please adjust! ### - op.execute("ALTER TYPE pricingplanclassification ADD VALUE 'LICENSE'") - # ### end Alembic commands ### + op.execute(sa.DDL("ALTER TYPE pricingplanclassification ADD VALUE 'LICENSE'")) def downgrade():