diff options
author | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-07-02 17:20:31 +0200 |
---|---|---|
committer | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-07-02 17:20:31 +0200 |
commit | cf7b6b92b777146430fcf8f3b4a5666a3f08ad51 (patch) | |
tree | 9f1ca31f2172bd111698a7f54f12187b2c7204fb /sonar-core/src/main/resources | |
parent | d068651faaeb9f30a39cc23eec8bce710c92fd26 (diff) | |
download | sonarqube-cf7b6b92b777146430fcf8f3b4a5666a3f08ad51.tar.gz sonarqube-cf7b6b92b777146430fcf8f3b4a5666a3f08ad51.zip |
SONAR-4463 Renamed permissions tables to comply with the max length constraint on Oracle
Diffstat (limited to 'sonar-core/src/main/resources')
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl b/sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl index 22b9d284ae9..76d10c54a4b 100644 --- a/sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl +++ b/sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl @@ -540,7 +540,7 @@ CREATE TABLE "PERMISSION_TEMPLATES" ( "UPDATED_AT" TIMESTAMP ); -CREATE TABLE "PERMISSION_TEMPLATES_USERS" ( +CREATE TABLE "PERM_TEMPLATES_USERS" ( "ID" INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1), "USER_LOGIN" VARCHAR(40) NOT NULL, "TEMPLATE_NAME" VARCHAR(100) NOT NULL, @@ -548,7 +548,7 @@ CREATE TABLE "PERMISSION_TEMPLATES_USERS" ( "UPDATED_AT" TIMESTAMP ); -CREATE TABLE "PERMISSION_TEMPLATES_GROUPS" ( +CREATE TABLE "PERM_TEMPLATES_GROUPS" ( "ID" INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1), "GROUP_ID" INTEGER, "TEMPLATE_NAME" VARCHAR(100) NOT NULL, |