init.sql 377 B

12345678910
  1. create schema if not exists user;
  2. create table if not exists user.user
  3. (
  4. id bigint auto_increment
  5. primary key,
  6. username varchar(100) not null,
  7. password varchar(100) not null,
  8. email varchar(100) not null,
  9. created_at timestamp default CURRENT_TIMESTAMP not null
  10. );