7 lines
87 B
MySQL
7 lines
87 B
MySQL
|
create table users (
|
||
|
username text primary key,
|
||
|
password text,
|
||
|
admin boolean
|
||
|
);
|
||
|
|