From af8e25bfc50a7781cd6897a421bf884c5e3c6421 Mon Sep 17 00:00:00 2001 From: burzuf Date: Wed, 18 Mar 2020 17:24:55 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D1=8B=20=D0=BE=D0=BF=D0=B5=D1=87=D0=B0=D1=82=D0=BA?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db_routing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_routing.py b/db_routing.py index acf26ad..0aa89f6 100644 --- a/db_routing.py +++ b/db_routing.py @@ -41,7 +41,7 @@ class Action(db.Model): __tablename__ = 'Actions' id = db.Column(db.Integer, primary_key=True) name = db.Column(db.String(80), unique=True, nullable=False) - def_nme = db.Column(db.String(200)) + def_name = db.Column(db.String(200)) class Scenario(db.Model):