aports/testing/poweradmin/0020-fix-for-mysql55.patch
Matt Smith 60f9f71401 testing/poweradmin: new aport
A Web-based PHP tool for administering PowerDNS
http://www.poweradmin.org/
2011-04-11 07:44:12 -05:00

21 lines
539 B
Diff

--- ./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);