Commit 37666d85 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Removed automatic update of the jiveVersion table.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3781 b35dd754-fafc-0310-a699-88a17e54d16e
parent a50ffef8
...@@ -884,14 +884,6 @@ public class DbConnectionManager { ...@@ -884,14 +884,6 @@ public class DbConnectionManager {
stmt.close(); stmt.close();
} }
} }
// If the upgrade script's version is greater than 6, automatically update the
// version information. Previous to version 6, the upgrade scripts set the version
// themselves.
if (i >= 6) {
stmt = con.createStatement();
stmt.execute("UPDATE jiveVersion SET version=" + i + " WHERE name='wildfire'");
stmt.close();
}
} }
finally { finally {
if (in != null) { if (in != null) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment