Skip to content

Commit 0a96ac7

Browse files
committed
change in sqlalchemy
1 parent 8d7ef5e commit 0a96ac7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

selections/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Applicant(db.Model):
1111
__tablename__ = 'application'
1212
id = Column(Integer, primary_key=True)
1313
created = Column(DateTime(timezone=True), server_default=func.now(), nullable=False)
14-
body = Column(String(6000), nullable=False)
14+
body = Column(String(6000), nullable=True)
1515
team = Column(Integer, nullable=False)
1616
gender = Column(String(15), nullable=False)
1717
phone_int = Column(Boolean, server_default='0', nullable=False)

0 commit comments

Comments
 (0)