aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephane Gamard <stephane.gamard@searchbox.com>2014-06-10 22:16:35 +0200
committerStephane Gamard <stephane.gamard@searchbox.com>2014-06-10 22:16:35 +0200
commite9269c049b45e4c54c87d31697b1345ec68d79f1 (patch)
tree306a88eac03872020ecbff0211c1a4189ec1cc22
parent998cf1d0d80fec59613a2bb1492afea02229864b (diff)
downloadsonarqube-e9269c049b45e4c54c87d31697b1345ec68d79f1.tar.gz
sonarqube-e9269c049b45e4c54c87d31697b1345ec68d79f1.zip
SONAR-5329 - Added db Migration
-rw-r--r--sonar-core/src/main/java/org/sonar/core/persistence/DatabaseVersion.java2
-rw-r--r--sonar-core/src/main/resources/org/sonar/core/persistence/rows-h2.sql1
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/db/migrate/543_add_type_to_log_table.rb30
3 files changed, 32 insertions, 1 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/persistence/DatabaseVersion.java b/sonar-core/src/main/java/org/sonar/core/persistence/DatabaseVersion.java
index 9f4dd4f5b0c..4d7aec0aa5c 100644
--- a/sonar-core/src/main/java/org/sonar/core/persistence/DatabaseVersion.java
+++ b/sonar-core/src/main/java/org/sonar/core/persistence/DatabaseVersion.java
@@ -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
diff --git a/sonar-core/src/main/resources/org/sonar/core/persistence/rows-h2.sql b/sonar-core/src/main/resources/org/sonar/core/persistence/rows-h2.sql
index 90b0780e6aa..60b4042217b 100644
--- a/sonar-core/src/main/resources/org/sonar/core/persistence/rows-h2.sql
+++ b/sonar-core/src/main/resources/org/sonar/core/persistence/rows-h2.sql
@@ -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
index 00000000000..ec9fb01f39f
--- /dev/null
+++ b/sonar-server/src/main/webapp/WEB-INF/db/migrate/543_add_type_to_log_table.rb
@@ -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