All checks were successful
BotServer CI/CD / build (push) Successful in 48s
New migration 6.3.0-01-kb-fail-state to add columns to kb_documents for intelligent backoff retry logic.
8 lines
273 B
SQL
8 lines
273 B
SQL
-- ============================================
|
|
-- Rollback KB Fail State
|
|
-- ============================================
|
|
|
|
DROP INDEX IF EXISTS idx_kb_documents_fail;
|
|
ALTER TABLE kb_documents
|
|
DROP COLUMN IF EXISTS fail_count,
|
|
DROP COLUMN IF EXISTS last_failed_at;
|