-
Notifications
You must be signed in to change notification settings - Fork 25
Security
Dennis Bauszus edited this page Apr 20, 2022
·
5 revisions
CREATE TABLE acl_schema.acl_table (
"_id" serial not null,
email text not null,
password text not null,
verified boolean default false,
approved boolean default false,
verificationtoken text,
approvaltoken text,
failedattempts integer default 0,
password_reset text,
api text,
approved_by text,
access_log text[] default '{}'::text[],
blocked boolean default false,
roles text[] default '{}'::text[],
admin boolean default false,
language text default 'en',
session text
);