We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e66a0a5 commit ec8afb5Copy full SHA for ec8afb5
graphene_sqlalchemy/tests/models.py
@@ -58,6 +58,7 @@ class Article(Base):
58
__tablename__ = "articles"
59
id = Column(Integer(), primary_key=True)
60
headline = Column(String(100))
61
+ description = Column(String(100))
62
pub_date = Column(Date())
63
reporter_id = Column(Integer(), ForeignKey("reporters.id"))
64
graphene_sqlalchemy/tests/test_types.py
@@ -90,6 +90,7 @@ class Meta:
90
assert list(Human._meta.fields) == [
91
"id",
92
"headline",
93
+ "description",
94
"pub_date",
95
"reporter_id",
96
"reporter",
0 commit comments