From 98f14f2ee98595a441d900523dce4c127e8b8559 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 11 Oct 2016 08:30:18 +0200 Subject: [PATCH] Polish documentation Closes gh-2642 --- spring-boot-docs/src/main/asciidoc/howto.adoc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-docs/src/main/asciidoc/howto.adoc index 259f431ba7..45c3055b76 100644 --- a/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -2034,9 +2034,10 @@ NOTE: You can output the schema creation by enabling the `org.hibernate.SQL` log is done for you automatically if you enable the <>. In addition, a file named `import.sql` in the root of the classpath will be executed on -startup. This can be useful for demos and for testing if you are careful, but probably -not something you want to be on the classpath in production. It is a Hibernate feature -(nothing to do with Spring). +startup if Hibernate creates the schema from scratch (that is if the `ddl-auto` property +is set to `create` or `create-drop`). This can be useful for demos and for testing if you +are careful, but probably not something you want to be on the classpath in production. It +is a Hibernate feature (nothing to do with Spring). [[howto-initialize-a-database-using-spring-jdbc]]