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
b22e3d51dc
spring-boot
/
spring-boot-project
/
spring-boot-autoconfigure
/
src
/
test
/
resources
/
schema.sql
5 lines
100 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
(
Adjust IDENTITY in DDLs for H2 2.x compatibility See gh-29200
2022-01-08 20:59:58 +08:00
id
INTEGER
GENERATED
BY
DEFAULT
AS
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
)
;