diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-02-15 08:29:28 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-02-15 08:29:28 +0100 |
commit | 0de4ce61be3000cb110e538c61c194c429239579 (patch) | |
tree | 2f49949232bb0f7908943b3da00ba6287305cc09 | |
parent | aaa4bb5e2d96f16a5b6b78c468632017d0e52fdd (diff) | |
download | aur-0de4ce61be3000cb110e538c61c194c429239579.tar.gz aur-0de4ce61be3000cb110e538c61c194c429239579.tar.xz |
Add note on InnoDB compatibility to "UPGRADING".
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
-rw-r--r-- | UPGRADING | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -79,6 +79,12 @@ NOTE: You can run aurblup as non-privileged user as well. Make sure that the user has read-write access to "/var/lib/aurblup/" (or whatever you defined with "ALPM_DBPATH") tho. +5. (optional): As of 1.8.0, all MySQL tables should be InnoDB compatible. To +convert a table, you can use this statement: `ALTER TABLE $foo ENGINE=InnoDB;`. +If you want to stick with MyISAM or another storage engine that doesn't support +transactions, you will need to disable the "MYSQL_USE_TRANSACTIONS" setting in +"config.h" when setting up aurblup. + From 1.6.0 to 1.7.0 ------------------- ALTER TABLE Users ADD Salt CHAR(32) NOT NULL DEFAULT ''; |