-
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
Datamodel - Cyclic relations on classes missing #107
Comments
Same with measuring_point.fk_reference_station !!@ comment = "Assoziation" |
These are all relations on the class itself. Many years ago I implemented this on MS ACCESS like this. Is this still the way to go also with Postgres?
|
Or is it enough to set DEREFERABLE? see #98 (comment) |
Solved with #158 |
The attribute and relation log_card.fk_main_structure and fk_next_special_building are missing in the datamodel.
!!@ comment = "Assoziation"
ASSOCIATION Stammkarte_HauptbauwerkAssoc =
HauptbauwerkRef -- {0..1} Stammkarte;
Stammkarte_HauptbauwerkAssocRef -- {0..*} Stammkarte;
END Stammkarte_HauptbauwerkAssoc;
!!@ comment = "Assoziation"
ASSOCIATION Stammkarte_Naechstes_SBWAssoc =
Naechstes_SBWRef -- {0..1} Stammkarte;
Stammkarte_Naechstes_SBWAssocRef -- {0..*} Stammkarte;
END Stammkarte_Naechstes_SBWAssoc;
The text was updated successfully, but these errors were encountered: