1 line
114 B
SQL
1 line
114 B
SQL
create table if not exists users (id bigserial not null, email varchar(255), name varchar(255), primary key (id)); |