Skip to content

Commit 28af882

Browse files
migration
1 parent cba460c commit 28af882

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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 ###

0 commit comments

Comments
 (0)