diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2016-06-23 16:57:21 +0200 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2016-06-29 11:06:00 +0200 |
commit | c6f2f2e15367862195f3e0424b73ac5f1f2af844 (patch) | |
tree | 48619740e3d41aad00344651c1e38198125870bf /server/sonar-web/src/main/webapp | |
parent | 8823c53764c4304a32b39c4b9a2506a7e8ffc4e2 (diff) | |
download | sonarqube-c6f2f2e15367862195f3e0424b73ac5f1f2af844.tar.gz sonarqube-c6f2f2e15367862195f3e0424b73ac5f1f2af844.zip |
SONAR-7794 add column RULES_PROFILES.USER_UPDATED_AT
Diffstat (limited to 'server/sonar-web/src/main/webapp')
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1262_add_user_updated_at_to_rules_profiles.rb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1262_add_user_updated_at_to_rules_profiles.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1262_add_user_updated_at_to_rules_profiles.rb new file mode 100644 index 00000000000..e3d4d5e52a4 --- /dev/null +++ b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1262_add_user_updated_at_to_rules_profiles.rb @@ -0,0 +1,28 @@ +# +# 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. +# +# +# SonarQube 6.0 +# SONAR-7794 +# +class AddUserUpdatedAtToRulesProfiles < ActiveRecord::Migration + def self.up + execute_java_migration('org.sonar.db.version.v60.AddUserUpdatedAtToRulesProfiles') + end +end |