5 lines
83 B
MySQL
5 lines
83 B
MySQL
|
create table users (
|
||
|
id bigserial,
|
||
|
login varchar(50),
|
||
|
password varchar(256)
|
||
|
);
|