6 lines
132 B
MySQL
6 lines
132 B
MySQL
|
|
create table if not exists users (
|
||
|
|
id integer primary key autoincrement,
|
||
|
|
username not null unique,
|
||
|
|
password not null
|
||
|
|
);
|