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
For SQLite, we are scaffolding indexes which are defined on PK properties. If there is no unique keyword in index then we scaffold unique=false for index. According to #700 , key's uniqueness will be based on the underlying index object. This causes bug if the PK is used as FK for relationship. Effectively making FK non-unique even though its unique.
The text was updated successfully, but these errors were encountered:
For SQLite, we are scaffolding indexes which are defined on PK properties. If there is no unique keyword in index then we scaffold
unique=false
for index. According to #700 , key's uniqueness will be based on the underlying index object. This causes bug if the PK is used as FK for relationship. Effectively making FK non-unique even though its unique.The text was updated successfully, but these errors were encountered: