]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5329 - Added db Migration
authorStephane Gamard <stephane.gamard@searchbox.com>
Tue, 10 Jun 2014 20:16:35 +0000 (22:16 +0200)
committerStephane Gamard <stephane.gamard@searchbox.com>
Tue, 10 Jun 2014 20:16:35 +0000 (22:16 +0200)
sonar-core/src/main/java/org/sonar/core/persistence/DatabaseVersion.java
sonar-core/src/main/resources/org/sonar/core/persistence/rows-h2.sql
sonar-server/src/main/webapp/WEB-INF/db/migrate/543_add_type_to_log_table.rb [new file with mode: 0644]

index 9f4dd4f5b0c874a20a8a4ecaabbf7599c403618e..4d7aec0aa5c5faa27e2d653d44ba3d7311a6f0a3 100644 (file)
@@ -33,7 +33,7 @@ import java.util.List;
  */
 public class DatabaseVersion implements BatchComponent, ServerComponent {
 
-  public static final int LAST_VERSION = 542;
+  public static final int LAST_VERSION = 543;
 
   public static enum Status {
     UP_TO_DATE, REQUIRES_UPGRADE, REQUIRES_DOWNGRADE, FRESH_INSTALL
index 90b0780e6aa8b83defe57bf65cabaea57cc05a11..60b4042217b19e420578cc7acc2ad7e19c869cbf 100644 (file)
@@ -237,6 +237,7 @@ INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('539');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('540');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('541');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('542');
+INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('543');
 
 INSERT INTO USERS(ID, LOGIN, NAME, EMAIL, CRYPTED_PASSWORD, SALT, CREATED_AT, UPDATED_AT, REMEMBER_TOKEN, REMEMBER_TOKEN_EXPIRES_AT) VALUES (1, 'admin', 'Administrator', '', 'a373a0e667abb2604c1fd571eb4ad47fe8cc0878', '48bc4b0d93179b5103fd3885ea9119498e9d161b', '2011-09-26 22:27:48.0', '2011-09-26 22:27:48.0', null, null);
 ALTER TABLE USERS ALTER COLUMN ID RESTART WITH 2;
diff --git a/sonar-server/src/main/webapp/WEB-INF/db/migrate/543_add_type_to_log_table.rb b/sonar-server/src/main/webapp/WEB-INF/db/migrate/543_add_type_to_log_table.rb
new file mode 100644 (file)
index 0000000..ec9fb01
--- /dev/null
@@ -0,0 +1,30 @@
+#
+# SonarQube, open source software quality management tool.
+# Copyright (C) 2008-2014 SonarSource
+# mailto:contact AT sonarsource DOT com
+#
+# SonarQube is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 3 of the License, or (at your option) any later version.
+#
+# SonarQube is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with this program; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+#
+class AddTypeToLogTable < ActiveRecord::Migration
+
+  def self.up
+    begin
+      remove_column 'logs', 'payload_field'
+      add_column 'logs', 'log_type', :string, :limit => 50
+      add_column 'logs', 'log_message', :string
+    end
+  end
+
+end