summaryrefslogtreecommitdiff
path: root/schema/init.sql
blob: 38d1e80956c046180b1221c965295165d5d74328 (plain)
1
2
3
4
5
6
7
CREATE TABLE users(
    id SERIAL NOT NULL,
    email text NOT NULL,
    password text NOT NULL,
    is_admin boolean default false,
    PRIMARY KEY (id)
);