-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add missing cyclic relations #158
Conversation
@3nids Are these the right options for a cyclic relation? |
The differences between DEFERRABLE INITIALLY DEFERRED, DEFERRABLE INITIALLY IMMEDIATE and NOT DEFERRABLE are as follows:
In summary, DEFERRABLE and NOT DEFERRABLE indicate whether the constraint can be deferred or not, and INITIALLY DEFERRED and INITIALLY IMMEDIATE indicate the default checking mode for the constraint. @sjib, @3nids, @cymed, @domi4484 for TEKSI would you be OK to use the DEFERRABLE INITIALLY DEFERRED for every relation connecting objects with each other in the database? (at least where it makes sense, so we can set it once and for all for the database) |
For what concerns the import/export is ok. |
should solve #107