diff options
author | Michael Tänzer <neo@nhng.de> | 2014-03-26 00:11:00 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2014-03-26 00:11:00 +0100 |
commit | 73e71069bb9f27c2edb44f7edf67e7ea316bb647 (patch) | |
tree | 9ad1de37fa091e955df6ba7616863b40965b8f95 | |
parent | d5520ccb753d2c6cc0074e311c60611949e47772 (diff) | |
download | cacert-devel-73e71069bb9f27c2edb44f7edf67e7ea316bb647.tar.gz cacert-devel-73e71069bb9f27c2edb44f7edf67e7ea316bb647.tar.xz cacert-devel-73e71069bb9f27c2edb44f7edf67e7ea316bb647.zip |
bug 1172: Correct typos and add missing table
Signed-off-by: Michael Tänzer <neo@nhng.de>
-rwxr-xr-x | scripts/db_migrations/version5.sh | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/scripts/db_migrations/version5.sh b/scripts/db_migrations/version5.sh index f5ac851..16f4e27 100755 --- a/scripts/db_migrations/version5.sh +++ b/scripts/db_migrations/version5.sh @@ -58,11 +58,7 @@ mysql $mysql_opt <<- 'SQL' -- Move myISAM to InnoDB bug #1172 -ALTER TABLE schema_version ENGINE=INNODB; -system echo "table schema_version altered to InnoDB" - - -ALTER TABLE abuserreports ENGINE=INNODB; +ALTER TABLE abusereports ENGINE=INNODB; system echo "table abusereports altered to InnoDB" @@ -117,8 +113,8 @@ ALTER TABLE domains ENGINE=INNODB; system echo "table domains altered to InnoDB" -ALTER TABLE domLink ENGINE=INNODB; -system echo "table domLink altered to InnoDB" +ALTER TABLE domlink ENGINE=INNODB; +system echo "table domlink altered to InnoDB" ALTER TABLE email ENGINE=INNODB; @@ -161,6 +157,10 @@ ALTER TABLE org ENGINE=INNODB; system echo "table org altered to InnoDB" +ALTER TABLE orgadminlog ENGINE=INNODB; +system echo "table orgadminlog altered to InnoDB" + + ALTER TABLE orgdomaincerts ENGINE=INNODB; system echo "table orgdomaincerts altered to InnoDB" @@ -201,6 +201,10 @@ ALTER TABLE root_certs ENGINE=INNODB; system echo "table root_certs altered to InnoDB" +ALTER TABLE schema_version ENGINE=INNODB; +system echo "table schema_version altered to InnoDB" + + ALTER TABLE stampcache ENGINE=INNODB; system echo "table stampcache altered to InnoDB" |