Files
java-tutorials/persistence-modules/spring-boot-persistence/src/main/resources/schema.sql
T

15 lines
301 B
SQL

drop table if exists USERS;
drop table if exists country;
create table USERS(
ID int not null AUTO_INCREMENT,
NAME varchar(100) not null,
STATUS int,
PRIMARY KEY ( ID )
);
CREATE TABLE country (
id INTEGER NOT NULL AUTO_INCREMENT,
name VARCHAR(128) NOT NULL,
PRIMARY KEY (id)
);