File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
packages/postgres-database/src/simcore_postgres_database/migration/versions Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ """add LICENSE type to pricing plan
2+
3+ Revision ID: 4d007819e61a
4+ Revises: 38c9ac332c58
5+ Create Date: 2024-12-09 14:25:45.024814+00:00
6+
7+ """
8+ from alembic import op
9+
10+ # revision identifiers, used by Alembic.
11+ revision = "4d007819e61a"
12+ down_revision = "38c9ac332c58"
13+ branch_labels = None
14+ depends_on = None
15+
16+
17+ def upgrade ():
18+ # ### commands auto generated by Alembic - please adjust! ###
19+ op .execute ("ALTER TYPE pricingplanclassification ADD VALUE 'LICENSE'" )
20+ # ### end Alembic commands ###
21+
22+
23+ def downgrade ():
24+ # ### commands auto generated by Alembic - please adjust! ###
25+ pass
26+ # ### end Alembic commands ###
You can’t perform that action at this time.
0 commit comments