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