You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2018/04/11 08:14:31 UTC

[camel] 19/41: CAMEL-12377: fix example SQL init script

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit f2f634365ecc87c6ce939dea933b87c2ea0d373f
Author: nferraro <ni...@gmail.com>
AuthorDate: Thu Mar 22 15:17:50 2018 +0100

    CAMEL-12377: fix example SQL init script
---
 .../camel-example-spring-boot-rest-jpa/src/main/resources/data.sql  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/examples/camel-example-spring-boot-rest-jpa/src/main/resources/data.sql b/examples/camel-example-spring-boot-rest-jpa/src/main/resources/data.sql
index 5698c3d..626f98b 100644
--- a/examples/camel-example-spring-boot-rest-jpa/src/main/resources/data.sql
+++ b/examples/camel-example-spring-boot-rest-jpa/src/main/resources/data.sql
@@ -15,7 +15,7 @@
 -- limitations under the License.
 -- ------------------------------------------------------------------------
 
-INSERT INTO books (item, description)
+INSERT INTO books (id, item, description)
   VALUES
-      ('Camel',    'Camel in Action'),
-      ('ActiveMQ', 'ActiveMQ in Action');
\ No newline at end of file
+      (1, 'Camel',    'Camel in Action'),
+      (2, 'ActiveMQ', 'ActiveMQ in Action');
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
davsclaus@apache.org.