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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f244b1ad2362c4103d50c44584256f95e1103216;p=pdns Add Engine=InnoDB for dnssec tables --- diff --git a/pdns/dnssec.schema.mysql.sql b/pdns/dnssec.schema.mysql.sql index f2c1d73c4..0cb9af66b 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);