awesome-compose/react-java-mysql/backend/src/main/resources/schema.sql
Guillaume Lours d7d79e436f Update Spring Boot and Mysql version for react-java-mysql sample
Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
2020-03-17 16:48:08 +01:00

6 lines
133 B
SQL

CREATE TABLE IF NOT EXISTS example.greetings (
id INTEGER AUTO_INCREMENT,
name varchar(50) NOT NULL,
PRIMARY KEY (id)
);