diff options
author | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-07-15 09:43:10 +0200 |
---|---|---|
committer | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-07-15 09:43:10 +0200 |
commit | 3ec6532e62c425e2cdb8a144303f025788858fab (patch) | |
tree | 5dfa84f7f1dba494db7d8728c3818441826c8006 | |
parent | 9aaf7a900140918107d1a052de21b00db1ceacd2 (diff) | |
download | sonarqube-3ec6532e62c425e2cdb8a144303f025788858fab.tar.gz sonarqube-3ec6532e62c425e2cdb8a144303f025788858fab.zip |
SONAR-4453 Fixed permissions setup data insertion for h2
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/core/persistence/rows-h2.sql | 2 |
1 files changed, 1 insertions, 1 deletions
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 92f82950400..750a0ba31aa 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 @@ -25,7 +25,7 @@ INSERT INTO PERM_TEMPLATES_GROUPS(ID, template_id, group_id, permission_referenc INSERT INTO PERM_TEMPLATES_GROUPS(ID, template_id, group_id, permission_reference) VALUES (5, 1, NULL, 'codeviewer'); ALTER TABLE PERM_TEMPLATES_GROUPS ALTER COLUMN ID RESTART WITH 6; -INSERT INTO PROPERTIES(ID, prop_key, resource_id, text_value, user_id) VALUES (1, 'sonar.permission.template.default', NULL, '1', NULL); +INSERT INTO PROPERTIES(ID, prop_key, resource_id, text_value, user_id) VALUES (1, 'sonar.permission.template.default', NULL, 'default_template', NULL); ALTER TABLE PROPERTIES ALTER COLUMN ID RESTART WITH 2; -- Default permissions end |