kind VARCHAR(16),
content TEXT,
primary key(id)
-);
+) Engine=InnoDB;
create index domainmetaidindex on domainmetadata(domain_id);
active BOOL,
content TEXT,
primary key(id)
-);
+) Engine=InnoDB;
create index domainidindex on cryptokeys(domain_id);
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);