Simple web-app example for spring-boot-data-jdbc
[demos/spring/data-jdbc] / src / main / resources / schema.sql
1 CREATE TABLE users (id BIGINT PRIMARY KEY AUTO_INCREMENT, username VARCHAR(255), created TIMESTAMP, logged_in BIT);