spring-boot-realworld-examp.../src/main/resources/db/migration/V1__create_tables.sql

9 lines
174 B
MySQL
Raw Normal View History

2017-08-08 10:01:06 +07:00
create table users (
2017-08-14 13:27:36 +07:00
id varchar(255) primary key,
username varchar(255) UNIQUE,
2017-08-08 10:01:06 +07:00
password varchar(255),
email varchar(255) UNIQUE,
bio text,
image varchar(511)
);