This website requires JavaScript.
Explore
Help
Sign In
root
/
spring-boot
mirror of
https://github.com/spring-projects/spring-boot.git
Watch
1
Star
0
Fork
You've already forked spring-boot
0
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
37c1f47902
spring-boot
/
spring-boot-project
/
spring-boot-autoconfigure
/
src
/
test
/
resources
/
schema.sql
5 lines
84 B
MySQL
Raw
Normal View
History
Unescape
Escape
Add schema.sql,data.sql to default SQL initializers ...for compatibility with Spring JDBC. Users can still optionally specify spring.database.schema, but the default location is schema-${spring.database.platform}.sql, schema.sql, data.sql. [Fixes #58332710]
2013-10-07 20:14:14 +08:00
CREATE
TABLE
BAR
(
id
INTEGER
IDENTITY
PRIMARY
KEY
,
Remove trailing commas from test SQL scripts Closes gh-18607
2019-10-16 00:12:49 +08:00
name
VARCHAR
(
30
)
Polish resource files to all end with a new line
2019-06-04 14:48:43 +08:00
)
;