navigation

This commit is contained in:
2026-08-07 19:20:16 +02:00
parent 5810c4c94f
commit ff6ef46cd4
78 changed files with 681 additions and 282 deletions
@@ -24,72 +24,72 @@ create table settings (
);
create table oidc (
id string not null primary key,
label string,
domain string,
client_id string,
client_secret string,
wellknown_url string,
id text not null primary key,
label text,
domain text,
client_id text,
client_secret text,
wellknown_url text,
_version text
);
create table users (
id string not null primary key,
firstname string not null default '',
lastname string not null default '',
password string not null default '',
email string not null unique,
picture string not null default '',
id text not null primary key,
firstname text not null default '',
lastname text not null default '',
password text not null default '',
email text not null unique,
picture text not null default '',
enabled numeric default true,
administrator numeric default false,
_version text not null
);
create table user_addresses (
id string not null primary key,
user_id string,
type string,
address string,
id text not null primary key,
user_id text,
type text,
address text,
_version text
);
create table channels (
id string not null primary key,
name string,
type string,
id text not null primary key,
name text,
type text,
enabled numeric,
configuration string,
configuration text,
_version text
);
create table tools (
id string not null primary key,
name string,
type string,
id text not null primary key,
name text,
type text,
enabled numeric,
configuration string,
configuration text,
_version text
);
create table tasks (
id string not null primary key,
owner_id string,
model_id string,
label string,
prompt string,
cron string,
status string,
id text not null primary key,
owner_id text,
model_id text,
label text,
prompt text,
cron text,
status text,
next_datetime numeric,
_version text
);
create table history (
id string not null primary key,
task_id string,
id text not null primary key,
task_id text,
start_datetimle numeric,
end_datetime numeric,
prompt string,
log string,
response string,
prompt text,
log text,
response text,
_version text
);