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
Currently our orm data model, when relying on sqlite, does not enforce cascade delete or foreign keys. The problem is that by default sqlite does not enforce foreign keys.
and the sqlalchemy requirements, then modify our datamodel sqlalchemy description so that cascade delete and foreign keys are enforced (e.g. when a user or application is deleted, the appropriate entries in the application policy table must be deleted as well)
The text was updated successfully, but these errors were encountered:
Currently our orm data model, when relying on sqlite, does not enforce cascade delete or foreign keys. The problem is that by default sqlite does not enforce foreign keys.
We need to check the docs
https://www.sqlite.org/foreignkeys.html#fk_basics
and the sqlalchemy requirements, then modify our datamodel sqlalchemy description so that cascade delete and foreign keys are enforced (e.g. when a user or application is deleted, the appropriate entries in the application policy table must be deleted as well)
The text was updated successfully, but these errors were encountered: