You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE IF NOT EXISTS user (login CHAR(254) PRIMARY KEY, password text NOT NULL, cookie text, name text, email text, confirmed text, admin BOOLEAN);
CREATE TABLE IF NOT EXISTS apps (application CHAR(50) PRIMARY KEY, url text NOT NULL, secret text NOT NULL);
CREATE TABLE IF NOT EXISTS accepts (login CHAR(254), application text NOT NULL, token text NOT NULL);
CREATE TABLE IF NOT EXISTS tokens (token CHAR(100) PRIMARY KEY, login text NOT NULL, created text NOT NULL);
CREATE TABLE IF NOT EXISTS scope (name CHAR(254) PRIMARY KEY, user text NOT NULL);
CREATE TABLE IF NOT EXISTS rights (type CHAR(20) PRIMARY KEY, item text, edit BOOLEAN, view BOOLEAN, scope text, owner BOOLEAN);