1010class Applicant (db .Model ):
1111 __tablename__ = 'application'
1212 id = Column (Integer , primary_key = True )
13- created = Column (DateTime (timezone = True ), server_default = func .now (), nullable = False )
13+ created = Column (DateTime (timezone = True ), server_default = func .now (), nullable = False ) #pylint: disable=not-callable
1414 body = Column (String (6000 ), nullable = True )
1515 team = Column (Integer , nullable = False )
1616 gender = Column (String (15 ), nullable = False )
@@ -26,7 +26,7 @@ class Members(db.Model):
2626
2727class Submission (db .Model ):
2828 id = Column (Integer , primary_key = True )
29- created = Column (DateTime (timezone = True ), server_default = func .now (), nullable = False )
29+ created = Column (DateTime (timezone = True ), server_default = func .now (), nullable = False ) #pylint: disable=not-callable
3030 application = Column (Integer , ForeignKey ('application.id' ), nullable = False )
3131 member = Column (String (50 ), ForeignKey ('members.username' ), nullable = False )
3232 medium = Column (interview_enum , primary_key = True )
0 commit comments