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
4
Packages
Projects
Releases
Wiki
Activity
f798f26596
spring-boot
/
spring-boot-project
/
spring-boot-cli
/
src
/
test
/
resources
/
schema-all.sql
5 lines
84 B
MySQL
Raw
Normal View
History
Unescape
Escape
Added JDBC and @Transactional support to Groovy CLI * @EnableTransactionManagement triggers spring-tx imports * Field or method of type JdbcTemplate or NamedParameterJdbcTemplate of DataSource triggers spring-jdbc imports
2013-09-13 22:25:42 +08:00
CREATE
TABLE
FOO
(
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
)
;