We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d7ef5e commit 0a96ac7Copy full SHA for 0a96ac7
selections/models.py
@@ -11,7 +11,7 @@ class Applicant(db.Model):
11
__tablename__ = 'application'
12
id = Column(Integer, primary_key=True)
13
created = Column(DateTime(timezone=True), server_default=func.now(), nullable=False)
14
- body = Column(String(6000), nullable=False)
+ body = Column(String(6000), nullable=True)
15
team = Column(Integer, nullable=False)
16
gender = Column(String(15), nullable=False)
17
phone_int = Column(Boolean, server_default='0', nullable=False)
0 commit comments