From 0de4ce61be3000cb110e538c61c194c429239579 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Tue, 15 Feb 2011 08:29:28 +0100 Subject: Add note on InnoDB compatibility to "UPGRADING". Signed-off-by: Lukas Fleischer --- UPGRADING | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'UPGRADING') 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 ''; -- cgit v1.2.3-24-g4f1b