File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
packages/postgres-database/src/simcore_postgres_database/migration/versions Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 11"""new products ui column
22
3- Revision ID: 8ec5d2f28966
3+ Revision ID: 78f24aaf3f78
44Revises: 68777fdf9539
5- Create Date: 2025-02-12 13:00:37.615966 +00:00
5+ Create Date: 2025-02-12 16:06:09.815111 +00:00
66
77"""
88import sqlalchemy as sa
99from alembic import op
1010from sqlalchemy .dialects import postgresql
1111
1212# revision identifiers, used by Alembic.
13- revision = "8ec5d2f28966 "
13+ revision = "78f24aaf3f78 "
1414down_revision = "68777fdf9539"
1515branch_labels = None
1616depends_on = None
1717
1818
1919def upgrade ():
20+ # ### commands auto generated by Alembic - please adjust! ###
2021 op .add_column (
2122 "products" ,
2223 sa .Column (
@@ -26,7 +27,10 @@ def upgrade():
2627 nullable = False ,
2728 ),
2829 )
30+ # ### end Alembic commands ###
2931
3032
3133def downgrade ():
34+ # ### commands auto generated by Alembic - please adjust! ###
3235 op .drop_column ("products" , "ui" )
36+ # ### end Alembic commands ###
You can’t perform that action at this time.
0 commit comments