6 lines
88 B
SQL
6 lines
88 B
SQL
create table users (
|
|
id text primary key,
|
|
name text,
|
|
hashed_password text
|
|
)
|