diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-10-12 22:21:02 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-10-13 12:18:42 +0200 |
commit | 735f1b954cc98dc6bb9fba2416b494acbf68b79e (patch) | |
tree | 89ce9fe2f7e7984d0dabf6356a8a9a89a9ef2341 /server/sonar-web/src/main | |
parent | 73b71c9e8eb47c6d833cd5f4725be50719598b88 (diff) | |
download | sonarqube-735f1b954cc98dc6bb9fba2416b494acbf68b79e.tar.gz sonarqube-735f1b954cc98dc6bb9fba2416b494acbf68b79e.zip |
SONAR-8134 add column group_roles.organization_uuid
Column is currently empty.
Diffstat (limited to 'server/sonar-web/src/main')
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1415_add_organization_uuid_to_group_roles.rb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1415_add_organization_uuid_to_group_roles.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1415_add_organization_uuid_to_group_roles.rb new file mode 100644 index 00000000000..318fc0c9ad5 --- /dev/null +++ b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1415_add_organization_uuid_to_group_roles.rb @@ -0,0 +1,29 @@ +# +# 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.2 +# +class AddOrganizationUuidToGroupRoles < ActiveRecord::Migration + + def self.up + execute_java_migration('org.sonar.db.version.v62.AddOrganizationUuidToGroupRoles') + end +end |