]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Correct MySQL datatype mismatch for 'disabled' 1299/head
authorChristian Hofstaedtler <christian@hofstaedtler.name>
Mon, 24 Feb 2014 15:12:08 +0000 (16:12 +0100)
committerChristian Hofstaedtler <christian@hofstaedtler.name>
Mon, 24 Feb 2014 15:12:08 +0000 (16:12 +0100)
Found by @mind04, thanks.

modules/gmysqlbackend/no-dnssec.schema.mysql.sql

index 88c9679a946b890d886677ce0d2f3f6bdab7662d..9636ad53036de6e766b5f17f8b679a575f194db6 100644 (file)
@@ -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;