From a9cd4911b98bcbecc337a6beb00a54b75db8c811 Mon Sep 17 00:00:00 2001 From: Khanh Ngo Date: Thu, 14 Apr 2016 12:19:02 +0700 Subject: [PATCH] Fix dnssec data type to be compatible with Postgresql --- app/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/models.py b/app/models.py index 4ebc4ba..db399e3 100644 --- a/app/models.py +++ b/app/models.py @@ -372,7 +372,7 @@ class Domain(db.Model): last_check = db.Column(db.Integer) dnssec = db.Column(db.Integer) - def __int__(self, id=None, name=None, master=None, type='NATIVE', serial=None, notified_serial=None, last_check=None, dnssec=None): + def __init__(self, id=None, name=None, master=None, type='NATIVE', serial=None, notified_serial=None, last_check=None, dnssec=None): self.id = id self.name = name self.master = master @@ -457,7 +457,7 @@ class Domain(db.Model): d.type = data['kind'] d.serial = data['serial'] d.notified_serial = data['notified_serial'] - d.last_check = data['last_check'] + d.last_check = 1 if data['last_check'] else 0 d.dnssec = data['dnssec'] else: # add new domain @@ -468,7 +468,7 @@ class Domain(db.Model): d.serial = data['serial'] d.notified_serial = data['notified_serial'] d.last_check = data['last_check'] - d.dnssec = data['dnssec'] + d.dnssec = 1 if data['dnssec'] else 0 db.session.add(d) try: db.session.commit()