Skip to content

Commit

Permalink
Fix type of relationship.reverse_relationship_id
Browse files Browse the repository at this point in the history
Maxim Moinat authored Feb 14, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 15e8e9d commit 7c9828f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/python/model/cdm/vocabularies.py
Original file line number Diff line number Diff line change
@@ -139,7 +139,7 @@ class Relationship(base):
relationship_name = Column(String(255), nullable=False)
is_hierarchical = Column(String(1), nullable=False)
defines_ancestry = Column(String(1), nullable=False)
reverse_relationship_id = Column(Integer, nullable=False)
reverse_relationship_id = Column(String(20), nullable=False)
relationship_concept_id = Column(Integer, nullable=False)


0 comments on commit 7c9828f

Please sign in to comment.