This is an automated email from the ASF dual-hosted git repository. nferraro pushed a commit to branch boot2ga in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/boot2ga by this push: new 197d235 CAMEL-12377: fix example SQL init script 197d235 is described below commit 197d235ab166886b11b97e15eb19031d5bd394d0 Author: nferraro <ni.ferr...@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 nferr...@apache.org.