The application can be started as a container via Docker Compose
[demos/spring/data-jdbc] / src / main / resources / db / migration / V1__Table_users.sql
1 CREATE TABLE users (id BIGINT PRIMARY KEY AUTO_INCREMENT, username VARCHAR(255), created TIMESTAMP, logged_in BIT);