mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 05:16:48 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
a57325a7c1
commit
6498030a98
2 changed files with 13 additions and 0 deletions
|
|
@ -16,11 +16,13 @@ export type Database = {
|
|||
Tables: {
|
||||
agent_instances: {
|
||||
Row: {
|
||||
agent_name: string | null
|
||||
container_name: string | null
|
||||
created_at: string
|
||||
id: string
|
||||
last_health_check_at: string | null
|
||||
model_config: Json
|
||||
onboarding_completed: boolean
|
||||
provisioned_at: string | null
|
||||
railway_service_id: string | null
|
||||
status: string
|
||||
|
|
@ -38,13 +40,16 @@ export type Database = {
|
|||
uuid_tenant: string
|
||||
vps_host: string | null
|
||||
vps_pool_id: string | null
|
||||
welcome_message_sent_at: string | null
|
||||
}
|
||||
Insert: {
|
||||
agent_name?: string | null
|
||||
container_name?: string | null
|
||||
created_at?: string
|
||||
id?: string
|
||||
last_health_check_at?: string | null
|
||||
model_config?: Json
|
||||
onboarding_completed?: boolean
|
||||
provisioned_at?: string | null
|
||||
railway_service_id?: string | null
|
||||
status?: string
|
||||
|
|
@ -62,13 +67,16 @@ export type Database = {
|
|||
uuid_tenant?: string
|
||||
vps_host?: string | null
|
||||
vps_pool_id?: string | null
|
||||
welcome_message_sent_at?: string | null
|
||||
}
|
||||
Update: {
|
||||
agent_name?: string | null
|
||||
container_name?: string | null
|
||||
created_at?: string
|
||||
id?: string
|
||||
last_health_check_at?: string | null
|
||||
model_config?: Json
|
||||
onboarding_completed?: boolean
|
||||
provisioned_at?: string | null
|
||||
railway_service_id?: string | null
|
||||
status?: string
|
||||
|
|
@ -86,6 +94,7 @@ export type Database = {
|
|||
uuid_tenant?: string
|
||||
vps_host?: string | null
|
||||
vps_pool_id?: string | null
|
||||
welcome_message_sent_at?: string | null
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -0,0 +1,4 @@
|
|||
ALTER TABLE public.agent_instances
|
||||
ADD COLUMN IF NOT EXISTS agent_name text,
|
||||
ADD COLUMN IF NOT EXISTS welcome_message_sent_at timestamp with time zone,
|
||||
ADD COLUMN IF NOT EXISTS onboarding_completed boolean NOT NULL DEFAULT false;
|
||||
Loading…
Add table
Add a link
Reference in a new issue