aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-testing-harness/src
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2011-07-26 11:55:44 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2011-07-26 11:55:44 +0200
commit2ef985b4603128e17ae4228d54b7d16ae58c007f (patch)
treefaf90f0f508a17f6629c598ec8130ab56149ef55 /sonar-testing-harness/src
parent60d8f5f0cc60308c5a291f35e39cbccd4e36b888 (diff)
downloadsonarqube-2ef985b4603128e17ae4228d54b7d16ae58c007f.tar.gz
sonarqube-2ef985b4603128e17ae4228d54b7d16ae58c007f.zip
SONAR-2644 Rule name should be optional in XML declaration files
Diffstat (limited to 'sonar-testing-harness/src')
-rw-r--r--sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl2
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,