From: Christian Hofstaedtler Date: Mon, 24 Feb 2014 15:12:08 +0000 (+0100) Subject: Correct MySQL datatype mismatch for 'disabled' X-Git-Tag: rec-3.6.0-rc1~167^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F1299%2Fhead;p=thirdparty%2Fpdns.git Correct MySQL datatype mismatch for 'disabled' Found by @mind04, thanks. --- diff --git a/modules/gmysqlbackend/no-dnssec.schema.mysql.sql b/modules/gmysqlbackend/no-dnssec.schema.mysql.sql index 88c9679a94..9636ad5303 100644 --- a/modules/gmysqlbackend/no-dnssec.schema.mysql.sql +++ b/modules/gmysqlbackend/no-dnssec.schema.mysql.sql @@ -20,7 +20,7 @@ CREATE TABLE records ( ttl INT DEFAULT NULL, prio INT DEFAULT NULL, change_date INT DEFAULT NULL, - disabled INT DEFAULT 0, + disabled BOOLEAN DEFAULT 0, primary key(id) ) Engine=InnoDB;