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