Skip to content

Commit a57ea81

Browse files
committed
feat: Advanced Application support to use SQL Examples
1 parent 00b9813 commit a57ea81

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
"""051_modify_data_training_ddl
2+
3+
Revision ID: cb12c4238120
4+
Revises: 2785e54dc1c4
5+
Create Date: 2025-11-10 16:11:29.753516
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
import sqlmodel.sql.sqltypes
11+
from sqlalchemy.dialects import postgresql
12+
13+
# revision identifiers, used by Alembic.
14+
revision = 'cb12c4238120'
15+
down_revision = '2785e54dc1c4'
16+
branch_labels = None
17+
depends_on = None
18+
19+
20+
def upgrade():
21+
# ### commands auto generated by Alembic - please adjust! ###
22+
op.add_column('data_training', sa.Column('advanced_application', sa.BigInteger(), nullable=True))
23+
# ### end Alembic commands ###
24+
25+
26+
def downgrade():
27+
# ### commands auto generated by Alembic - please adjust! ###
28+
op.drop_column('data_training', 'advanced_application')
29+
# ### end Alembic commands ###

0 commit comments

Comments
 (0)