From 8597ba0069ab327feaee77e3164f99a5546c4690 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Sat, 8 Sep 2018 08:49:46 +0200 Subject: [PATCH] [fix] typo --- models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models.py b/models.py index f606d21..ee56189 100644 --- a/models.py +++ b/models.py @@ -14,7 +14,7 @@ class Repo(peewee.Model): ('other_than_working', 'Other than working'), ), default="other_than_working") - random_job_day = peewee.IntegerFieldIntegerField(null=True) + random_job_day = peewee.IntegerField(null=True) class Meta: database = db