aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Gageot <david@gageot.net>2012-05-10 09:20:28 +0200
committerDavid Gageot <david@gageot.net>2012-05-10 09:21:33 +0200
commite0bf9f67f760c73d1204de7a557e0289478c297f (patch)
treee925385a078b1d6679c7ffc381bcd2b0eb8e636b
parent78682cee4b243aa96f0fd02776b0891937bc7e9c (diff)
downloadsonarqube-e0bf9f67f760c73d1204de7a557e0289478c297f.tar.gz
sonarqube-e0bf9f67f760c73d1204de7a557e0289478c297f.zip
SONAR-1927 Fix Widget Oracle mapping
-rw-r--r--sonar-core/src/main/resources/org/sonar/core/dashboard/WidgetMapper-oracle.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/core/dashboard/WidgetMapper-oracle.xml b/sonar-core/src/main/resources/org/sonar/core/dashboard/WidgetMapper-oracle.xml
index 7a9360e602e..1cb58c0ab3b 100644
--- a/sonar-core/src/main/resources/org/sonar/core/dashboard/WidgetMapper-oracle.xml
+++ b/sonar-core/src/main/resources/org/sonar/core/dashboard/WidgetMapper-oracle.xml
@@ -9,7 +9,7 @@
</selectKey>
INSERT INTO widgets (id, dashboard_id, widget_key, name, description, column_index, row_index, configured, created_at, updated_at, resource_id)
VALUES (#{id}, #{dashboardId}, #{key}, #{name, jdbcType=VARCHAR}, #{description, jdbcType=VARCHAR}, #{columnIndex, jdbcType=INTEGER},
- #{rowIndex, jdbcType=INTEGER}, #{configured}, #{createdAt, jdbcType=TIMESTAMP}, #{updatedAt, jdbcType=TIMESTAMP}, #{resource_id, jdbcType=INTEGER})
+ #{rowIndex, jdbcType=INTEGER}, #{configured}, #{createdAt, jdbcType=TIMESTAMP}, #{updatedAt, jdbcType=TIMESTAMP}, #{resourceId, jdbcType=INTEGER})
</insert>
</mapper>