Files
java-tutorials/spring-boot/src/main/resources/schema.sql
T
Doha2012 cc276589ec fix integration test (#1615)
* upgrade to spring boot 1.5.2

* add full update to REST API

* modify ratings controller

* upgrade herold

* fix integration test

* fix integration test

* minor fix

* fix integration test

* fix integration test

* minor cleanup
2017-04-09 20:38:30 +02:00

8 lines
150 B
SQL

drop table if exists USERS;
create table USERS(
ID int not null AUTO_INCREMENT,
NAME varchar(100) not null,
STATUS int,
PRIMARY KEY ( ID )
);