From: Aki Tuomi Date: Mon, 2 Sep 2013 15:38:22 +0000 (+0300) Subject: Add Engine=InnoDB for dnssec tables X-Git-Tag: rec-3.6.0-rc1~481^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F986%2Fhead;p=thirdparty%2Fpdns.git Add Engine=InnoDB for dnssec tables --- diff --git a/pdns/dnssec.schema.mysql.sql b/pdns/dnssec.schema.mysql.sql index f2c1d73c48..0cb9af66b5 100644 --- a/pdns/dnssec.schema.mysql.sql +++ b/pdns/dnssec.schema.mysql.sql @@ -4,7 +4,7 @@ create table domainmetadata ( kind VARCHAR(16), content TEXT, primary key(id) -); +) Engine=InnoDB; create index domainmetaidindex on domainmetadata(domain_id); @@ -16,7 +16,7 @@ create table cryptokeys ( active BOOL, content TEXT, primary key(id) -); +) Engine=InnoDB; create index domainidindex on cryptokeys(domain_id); @@ -30,7 +30,7 @@ create table tsigkeys ( algorithm VARCHAR(50), secret VARCHAR(255), primary key(id) -); +) Engine=InnoDB; create unique index namealgoindex on tsigkeys(name, algorithm); alter table records change column type type VARCHAR(10);