We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is seems that there is currently no way to change a name of a relationship attribute:
class Example(Base): __tablename__ = "example_system_systems" id = Column(sla.Integer, primary_key=True, nullable=False) domain_search = relationship("ExampleDomainSearch", supports_json=True)
I want to change the name of the attribute domain_search to domain-search.
domain_search
domain-search
The text was updated successfully, but these errors were encountered:
I started working on adding this property for relationships. Please check and comment on #91
Sorry, something went wrong.
Merge pull request #91 from TribuneX/issue89-support-display-name-for…
e2d38df
…-relationship Closes issue #89: Add support for display_name property for relationship
insightindustry
Successfully merging a pull request may close this issue.
Is seems that there is currently no way to change a name of a relationship attribute:
I want to change the name of the attribute
domain_search
todomain-search
.The text was updated successfully, but these errors were encountered: