summaryrefslogtreecommitdiffstats
path: root/migrations/2021-03-20-171007_create_users/up.sql
blob: 0eecea7c0c745dec482f96151d661919644894c0 (plain)
1
2
3
4
5
6
-- Your SQL goes here
create table users (
	id bigserial primary key,               -- also store our own ID
	email varchar(128) not null unique,     -- being able to contact users is useful
	password varchar(128) not null unique
);