Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 168 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 168 Bytes

Create the table with the following sql statement


create table users (
  id serial primary key,
  email text not null unique,
  password text not null
);