summaryrefslogtreecommitdiffstats
path: root/UPGRADING
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2011-02-15 08:29:28 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2011-02-15 08:29:28 +0100
commit0de4ce61be3000cb110e538c61c194c429239579 (patch)
tree2f49949232bb0f7908943b3da00ba6287305cc09 /UPGRADING
parentaaa4bb5e2d96f16a5b6b78c468632017d0e52fdd (diff)
downloadaur-0de4ce61be3000cb110e538c61c194c429239579.tar.gz
aur-0de4ce61be3000cb110e538c61c194c429239579.tar.xz
Add note on InnoDB compatibility to "UPGRADING".
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING6
1 files changed, 6 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
index 9a73f25e..e5128508 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -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 '';