# HG changeset patch
# User Matthew Wild <mwild1@gmail.com>
# Date 1307271221 -3600
# Node ID 52ccbf71d062cf747e21465de42f8195cd37f592
# Parent  7ad81d81f5ec2db2bc7677af23a942f27a9df593
migrator/prosody_sql.lua: Fix for compatibility with non-MySQL databases

diff -r 7ad81d81f5ec -r 52ccbf71d062 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();