Skip to content

Commit

Permalink
Merge pull request #40 from thehyve/MaximMoinat-patch-1
Browse files Browse the repository at this point in the history
Fix type of relationship.reverse_relationship_id
  • Loading branch information
Spayralbe authored Mar 15, 2023
2 parents 533ad2d + 7c9828f commit 51901b2
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
Expand Up @@ -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)


Expand Down

0 comments on commit 51901b2

Please sign in to comment.