8 lines
164 B
SQL
8 lines
164 B
SQL
create table users (
|
|
id text primary key,
|
|
username text
|
|
name text,
|
|
password_digest binary
|
|
);
|
|
create unique index users_username on users(username);
|