From 3cd47f1d762030ec5491a68d518e3491cc2d98aa Mon Sep 17 00:00:00 2001 From: Nicolas FAUGEROUX Date: Wed, 15 Jan 2025 13:34:05 +0100 Subject: [PATCH] fix: use correct type for timeout --- models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models.py b/models.py index d62e0e2..f35952f 100644 --- a/models.py +++ b/models.py @@ -32,7 +32,7 @@ class DynamicIaCChallenge(DynamicChallenge): ) mana_cost = db.Column(db.Integer, default=0) until = db.Column(db.Text) # date - timeout = db.Column(db.Text) + timeout = db.Column(db.Integer) shared = db.Column(db.Boolean, default=False) destroy_on_flag = db.Column(db.Boolean, default=False)