blob: dbf59973c5dbffbdd2ec66fb357a4a0c17a24b21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- ./docs/powerdns-mysql-db-structure.sql.orig
+++ ./docs/powerdns-mysql-db-structure.sql
@@ -7,7 +7,7 @@
notified_serial INT DEFAULT NULL,
account VARCHAR(40) DEFAULT NULL,
primary key (id)
-)type=InnoDB;
+) Engine=InnoDB;
CREATE UNIQUE INDEX name_index ON domains(name);
@@ -21,7 +21,7 @@
prio INT DEFAULT NULL,
change_date INT DEFAULT NULL,
primary key(id)
-)type=InnoDB;
+) Engine=InnoDB;
CREATE INDEX rec_name_index ON records(name);
CREATE INDEX nametype_index ON records(name,type);
|