Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matusdrobuliak66 committed Dec 5, 2024
1 parent 894b636 commit 038ea39
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class LicensedResourceType(str, enum.Enum):
UUID(as_uuid=True),
nullable=False,
primary_key=True,
server_default="gen_random_uuid()",
server_default=sa.text("gen_random_uuid()"),
),
sa.Column(
"name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
UUID(as_uuid=True),
nullable=False,
primary_key=True,
server_default="gen_random_uuid()",
server_default=sa.text("gen_random_uuid()"),
),
sa.Column(
"product_name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
UUID(as_uuid=True),
nullable=False,
primary_key=True,
server_default="gen_random_uuid()",
server_default=sa.text("gen_random_uuid()"),
),
sa.Column(
"licensed_item_id",
Expand Down

0 comments on commit 038ea39

Please sign in to comment.