Access Control List (ACL)
create table if not exists users
(
"_id" serial not null,
email text not null,
password text not null,
verified boolean,
approved boolean,
admin boolean,
verificationtoken text,
approvaltoken text,
failedattempts integer default 0,
password_reset text,
api text
);Last updated