mirror of
https://github.com/ChronosX88/yat-server.git
synced 2024-11-09 16:51:01 +00:00
9 lines
242 B
MySQL
9 lines
242 B
MySQL
|
-- Your SQL goes here
|
||
|
create table if not exists users (
|
||
|
id integer primary key,
|
||
|
created_at timestamp not null,
|
||
|
updated_at timestamp,
|
||
|
username text unique not null,
|
||
|
email text unique not null,
|
||
|
password text not null
|
||
|
);
|