]> granicus.if.org Git - pdns/commitdiff
Add Engine=InnoDB for dnssec tables
authorAki Tuomi <cmouse@desteem.org>
Mon, 2 Sep 2013 15:38:22 +0000 (18:38 +0300)
committerAki Tuomi <cmouse@desteem.org>
Mon, 2 Sep 2013 15:38:22 +0000 (18:38 +0300)
pdns/dnssec.schema.mysql.sql

index f2c1d73c48796dffecd32456cf91d3407bf51dbe..0cb9af66b529b81669870745943689e7ad7386a4 100644 (file)
@@ -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);