awesome-compose/samples/spring-postgres/backend/src/main/resources/schema.sql
Guillaume Lours ddcbf6f7bd Add connection between spring boot server and postgresql database
Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
2020-03-12 14:16:55 +01:00

4 lines
99 B
SQL

CREATE TABLE IF NOT EXISTS GREETINGS (
id serial PRIMARY KEY,
name varchar(50) NOT NULL
);