Just work please
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-12-14 16:54:51 +01:00
parent a3adb1b17a
commit afde4e58c0
5 changed files with 116 additions and 73 deletions

View File

@@ -6,4 +6,6 @@ from . import db
class Job(db.Model):
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
created_at = db.Column(db.TIMESTAMP, nullable=False, server_default=func.now())
created_at = db.Column(db.TIMESTAMP, nullable=False, server_default=func.now())
site = db.Column(db.String, nullable=False)