This commit is contained in:
Greg Turnquist 2013-07-22 08:38:03 -04:00
parent 1a8473d8e3
commit b7a1f10e4c
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ Next, you write a SQL script to create a table to store the data.
<@snippet path="src/main/resources/schema-all.sql" prefix="initial"/>
> **Note:** Spring Zero runs `schema-@@platform@@` automatically during startup. `-all` is the default for all platforms.
> **Note:** Spring Zero runs `schema-@@platform@@.sql` automatically during startup. `-all` is the default for all platforms.
<a name="initial"></a>
Create a business class

View File

@ -135,7 +135,7 @@ CREATE TABLE people (
);
```
> **Note:** Spring Zero runs `schema-@@platform@@` automatically during startup. `-all` is the default for all platforms.
> **Note:** Spring Zero runs `schema-@@platform@@.sql` automatically during startup. `-all` is the default for all platforms.
<a name="initial"></a>
Create a business class