Skip to content

Commit

Permalink
allow all to be nullable for now
Browse files Browse the repository at this point in the history
  • Loading branch information
rmarow committed Oct 14, 2024
1 parent dcdc2dd commit 1fadf6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions usaon_benefit_tool/models/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,10 +262,10 @@ class NodeSubtypeSocietalBenefitArea(Node):
ForeignKey('societal_benefit_area.id'),
nullable=False,
)
name = Column(String(512), nullable=False)
name = Column(String(512), nullable=True)
short_name = Column(String(256), nullable=True)
description = Column(String, nullable=False)
framework_name = Column(String(256), nullable=False)
description = Column(String, nullable=True)
framework_name = Column(String(256), nullable=True)
framework_url = Column(String(512), nullable=True)

# TODO: Relationship to societal benefit area table? How would we make a similar
Expand Down

0 comments on commit 1fadf6e

Please sign in to comment.