catalog_tables: declaration250, app_access
This data as json
| database_name | table_name | rootpage | sql |
|---|---|---|---|
| declaration250 | app_access | 75 | CREATE TABLE app_access ( id INTEGER PRIMARY KEY, app_id TEXT REFERENCES apps(id), action TEXT NOT NULL, subject_type TEXT NOT NULL, subject_id TEXT, allow INTEGER NOT NULL DEFAULT 1, created_at TEXT NOT NULL, updated_at TEXT NOT NULL, CHECK (subject_type IN ('authenticated')), CHECK (allow IN (0, 1)) ) |