mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 09:16:46 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
5c1c588aac
commit
676a424259
2 changed files with 13 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
ALTER TABLE public.agent_instances
|
||||
ADD COLUMN IF NOT EXISTS managed_bot_pending boolean NOT NULL DEFAULT false,
|
||||
ADD COLUMN IF NOT EXISTS managed_bot_suggested_username text;
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_agent_instances_managed_bot_pending
|
||||
ON public.agent_instances (managed_bot_pending)
|
||||
WHERE managed_bot_pending = true;
|
||||
Loading…
Add table
Add a link
Reference in a new issue