Skip to content

Commit

Permalink
Merge pull request #301 from Sherwin-14/change-sizes
Browse files Browse the repository at this point in the history
Changed string character count
  • Loading branch information
mfisher87 committed May 11, 2024
2 parents 06dee20 + 46860f5 commit 7b8cec6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions usaon_benefit_tool/models/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Assessment(BaseModel):
id = Column(Integer, primary_key=True, autoincrement=True)

title = Column(String(128), nullable=False)
description = Column(String(512), nullable=True)
description = Column(String(4096), nullable=True)

private = Column(Boolean, nullable=False, default=False)
hypothetical = Column(Boolean, nullable=False, default=False)
Expand Down Expand Up @@ -171,7 +171,7 @@ class Node(BaseModel):

title = Column(String(128), nullable=False)
short_name = Column(String(256), nullable=False)
description = Column(String(512), nullable=True)
description = Column(String(4096), nullable=True)

# TODO: Implement tags!
# tags = Column(String, nullable=False)
Expand Down

0 comments on commit 7b8cec6

Please sign in to comment.