Skip to content

Commit

Permalink
Require value for is_active and ran reformat.
Browse files Browse the repository at this point in the history
  • Loading branch information
sterbo authored and divbzero committed Apr 13, 2022
1 parent 53f6e79 commit 11cd4c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion warehouse/organizations/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class Organization(db.Model):
)
link_url = Column(URLType, nullable=False)
description = Column(Text, nullable=False)
is_active = Column(Boolean)
is_active = Column(Boolean, nullable=False, default=False)
is_approved = Column(Boolean)
created = Column(
DateTime(timezone=False),
Expand Down

0 comments on commit 11cd4c1

Please sign in to comment.