migrator/prosody_sql.lua: Fix for compatibility with non-MySQL databases
authorMatthew Wild <mwild1@gmail.com>
Sun, 05 Jun 2011 11:53:41 +0100
changeset 4310 52ccbf71d062
parent 4309 7ad81d81f5ec
child 4311 d6366294f618
migrator/prosody_sql.lua: Fix for compatibility with non-MySQL databases
tools/migration/migrator/prosody_sql.lua
--- a/tools/migration/migrator/prosody_sql.lua	Sun Jun 05 11:53:29 2011 +0100
+++ b/tools/migration/migrator/prosody_sql.lua	Sun Jun 05 11:53:41 2011 +0100
@@ -42,7 +42,7 @@
 				ok, err = assert(stmt:execute());
 				commit_ok, commit_err = assert(connection:commit());
 			end
-		else -- COMPAT: Upgrade tables from 0.8.0
+		elseif params.driver == "MySQL" then -- COMPAT: Upgrade tables from 0.8.0
 			-- Failed to create, but check existing MySQL table here
 			local stmt = connection:prepare("SHOW COLUMNS FROM prosody WHERE Field='value' and Type='text'");
 			local ok = stmt:execute();