You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just run the code example from the docs. SQLModel creates a Char(32) column for the UUID type Fields, when used by MySQL backend, however the appropriate size would be Char(36) as mentioned in almost every known source about UUID (as of in fastapi-users handled).
The problem is, when having Tables that supposed to have Relations (FKs) with other Tables having UUID as PK.
e.g: having a Contacts Table with a FK relates to User.id in fastapi-users.
Is there a straight forward way to handle such scenario with SQLModel to create an appropriate Field with desired Type and Size: Char/VarChar(36), or have to write custom code to handle the case?
P.S
If the FK define as str (as suggested in SQLModel Docs. to create a VarChar(n) it conflicts when using PostgreSQL as backend that used uuid type internally and could not establish FK with str type)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
First Check
Commit to Help
Example Code
Description
Hi everyone,
Just run the code example from the docs.
SQLModel creates a Char(32) column for the UUID type Fields, when used by MySQL backend, however the appropriate size would be Char(36) as mentioned in almost every known source about UUID (as of in
fastapi-users
handled).The problem is, when having Tables that supposed to have Relations (FKs) with other Tables having UUID as PK.
e.g: having a Contacts Table with a FK relates to User.id in
fastapi-users
.Is there a straight forward way to handle such scenario with SQLModel to create an appropriate
Field
with desired Type and Size: Char/VarChar(36), or have to write custom code to handle the case?P.S
If the FK define as
str
(as suggested in SQLModel Docs. to create a VarChar(n) it conflicts when using PostgreSQL as backend that useduuid
type internally and could not establish FK withstr
type)Operating System
Windows
Operating System Details
No response
SQLModel Version
0.0.24
Python Version
3.10.16
Additional Context
No response
Beta Was this translation helpful? Give feedback.
All reactions