add initial endpoints

This commit is contained in:
sam 2024-01-16 17:16:39 +01:00
parent 97d089c284
commit 3025f1380c
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
19 changed files with 300 additions and 9 deletions

View file

@ -17,6 +17,7 @@ create type instance_status as enum ('active', 'suspended');
create table chat_instances (
id text primary key,
domain text not null unique,
base_url text not null,
public_key text not null,
status instance_status not null default 'active',
reason text