Skip to content

Commit

Permalink
fix syntax for sa column
Browse files Browse the repository at this point in the history
  • Loading branch information
bailliekova committed Jul 21, 2024
1 parent 301b9f1 commit 4d0040a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class GerryDBTable(GerryDBTableBase, table=True):


class Document(TimeStampMixin, SQLModel):
document_id: str | None = Field(sa_column=Column(UUIDType), unique=True)
document_id: str | None = Field(sa_column=Column(UUIDType, unique=True))


class AssignmentsMixin(SQLModel):
Expand Down

0 comments on commit 4d0040a

Please sign in to comment.