Skip to content

Commit

Permalink
fix: desc
Browse files Browse the repository at this point in the history
  • Loading branch information
shahargl committed Jul 16, 2024
1 parent 4bedf49 commit 799f63f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def upgrade() -> None:
sa.Column("timestamp", sa.DateTime(), nullable=False),
sa.Column("user_id", sqlmodel.sql.sqltypes.AutoString(), nullable=False),
sa.Column("action", sqlmodel.sql.sqltypes.AutoString(), nullable=False),
sa.Column("description", sqlmodel.sql.sqltypes.AutoString(), nullable=False),
sa.Column("description", sa.Text(), nullable=False),
sa.ForeignKeyConstraint(
["tenant_id"],
["tenant.id"],
Expand Down

0 comments on commit 799f63f

Please sign in to comment.