diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2011-07-26 11:55:44 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2011-07-26 11:55:44 +0200 |
commit | 2ef985b4603128e17ae4228d54b7d16ae58c007f (patch) | |
tree | faf90f0f508a17f6629c598ec8130ab56149ef55 /sonar-testing-harness | |
parent | 60d8f5f0cc60308c5a291f35e39cbccd4e36b888 (diff) | |
download | sonarqube-2ef985b4603128e17ae4228d54b7d16ae58c007f.tar.gz sonarqube-2ef985b4603128e17ae4228d54b7d16ae58c007f.zip |
SONAR-2644 Rule name should be optional in XML declaration files
Diffstat (limited to 'sonar-testing-harness')
-rw-r--r-- | sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl b/sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl index c9feaaa71f9..864fff1f2a2 100644 --- a/sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl +++ b/sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl @@ -301,7 +301,7 @@ create table QUALITY_MODELS ( create table RULES ( ID INTEGER not null, - NAME VARCHAR(192) not null, + NAME VARCHAR(192), PLUGIN_RULE_KEY VARCHAR(200) not null, PLUGIN_NAME VARCHAR(255) not null, DESCRIPTION CLOB, |