diff options
author | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-06-20 15:08:26 +0200 |
---|---|---|
committer | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-06-20 15:08:39 +0200 |
commit | 87f1cd0960598af76b04faefe6a8c7fc5b54c874 (patch) | |
tree | c5cbcb2a2756883d742116d2d80c34dc3d95746e /sonar-core | |
parent | b32fa65e763b16e9dd00d31c8c0ce46a00286cc3 (diff) | |
download | sonarqube-87f1cd0960598af76b04faefe6a8c7fc5b54c874.tar.gz sonarqube-87f1cd0960598af76b04faefe6a8c7fc5b54c874.zip |
SONAR-5329 - Convert ES time to current timeZones
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/core/persistence/migration/v44/Migration44Mapper.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/core/persistence/migration/v44/Migration44Mapper.xml b/sonar-core/src/main/resources/org/sonar/core/persistence/migration/v44/Migration44Mapper.xml index 4484a1111e6..8adb47e20c7 100644 --- a/sonar-core/src/main/resources/org/sonar/core/persistence/migration/v44/Migration44Mapper.xml +++ b/sonar-core/src/main/resources/org/sonar/core/persistence/migration/v44/Migration44Mapper.xml @@ -51,19 +51,19 @@ rule_change.id as id, rule_change.change_date as createdAt, users.login as userLogin, - rule_def.plugin_name as ruleKey, - rule_def.plugin_rule_key as repository, + rule_def.plugin_name as repository, + rule_def.plugin_rule_key as ruleKey, profile.kee as profileKey, rule_change.new_severity as severity , rule_def.name as ruleName, - rule_def_param.name as paramName, + rule_def_param.name as paramKey, rule_param_change.new_value as paramValue from active_rule_changes rule_change left join users on users.name = rule_change.username left join rules rule_def on rule_def.id = rule_change.rule_id left join rules_profiles profile on profile.id = rule_change.profile_id left join active_rule_param_changes rule_param_change on rule_param_change.active_rule_change_id = rule_change.id - left join rules_parameters rule_def_param on rule_def_param.id = rule_param_change.rules_parameter_id + left join rules_parameters rule_def_param on rule_param_change.rules_parameter_id = rule_def_param.id WHERE <choose> <when test="enabled != null"> |