Added a script that illustrates the example
[demos/spring/data-jdbc] / db / migration / V1__Table_users.sql
1 CREATE TABLE users (id BIGINT PRIMARY KEY AUTO_INCREMENT, username VARCHAR(255), created TIMESTAMP, logged_in BIT);