Skip to content

Commit df6022f

Browse files
committed
Migration custom fix
1 parent 9556edf commit df6022f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

backend/app/alembic/versions/f23a9c45d178_add_ticket_and_comment.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ def upgrade():
2222
sa.Column("id", UUID(), nullable=False, server_default=sa.text("gen_random_uuid()")),
2323
sa.Column("title", sqlmodel.sql.sqltypes.AutoString(), nullable=False),
2424
sa.Column("description", sqlmodel.sql.sqltypes.AutoString(), nullable=True),
25+
sa.Column("category", sqlmodel.sql.sqltypes.AutoString(), nullable=False),
2526
sa.Column("status", sqlmodel.sql.sqltypes.AutoString(), nullable=False),
2627
sa.Column("priority", sqlmodel.sql.sqltypes.AutoString(), nullable=True),
2728
sa.Column("created_at", sa.DateTime(), nullable=False, server_default=sa.text("now()")),

0 commit comments

Comments
 (0)