Move data.sql - schema.sql (#3067)
This commit is contained in:
committed by
GitHub
parent
b30097b581
commit
7a21f5ee85
5
spring-boot/src/test/resources/data.sql
Normal file
5
spring-boot/src/test/resources/data.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
INSERT INTO country (name) VALUES ('India');
|
||||
INSERT INTO country (name) VALUES ('Brazil');
|
||||
INSERT INTO country (name) VALUES ('USA');
|
||||
INSERT INTO country (name) VALUES ('Italy');
|
||||
COMMIT;
|
||||
5
spring-boot/src/test/resources/schema.sql
Normal file
5
spring-boot/src/test/resources/schema.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
CREATE TABLE country (
|
||||
id INTEGER NOT NULL AUTO_INCREMENT,
|
||||
name VARCHAR(128) NOT NULL,
|
||||
PRIMARY KEY (id)
|
||||
);
|
||||
Reference in New Issue
Block a user