schema creation progress

This commit is contained in:
2025-12-07 22:18:01 +01:00
parent 2e354b435c
commit 2fcb504b9a
11 changed files with 336 additions and 168 deletions
+3 -3
View File
@@ -30,15 +30,15 @@ std::shared_ptr<repository_node> relation_endpoint::node_ptr() const {
}
bool relation_endpoint::is_has_one() const {
return type_ == relation_type::HAS_ONE;
return type_ == relation_type::HasOne;
}
bool relation_endpoint::is_has_many() const {
return type_ == relation_type::HAS_MANY;
return type_ == relation_type::HasMany;
}
bool relation_endpoint::is_belongs_to() const {
return type_ == relation_type::BELONGS_TO;
return type_ == relation_type::BelongsTo;
}
std::shared_ptr<relation_endpoint> relation_endpoint::foreign_endpoint() const {