From 899a9780d5190bfcdf7ae054a7458839b136fafb Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 20 Dec 2025 14:50:19 +0530 Subject: [PATCH] add LiteLLM_SkillsTable_pkey --- .../migration.sql | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 litellm-proxy-extras/litellm_proxy_extras/migrations/20251220144550_schema_update/migration.sql diff --git a/litellm-proxy-extras/litellm_proxy_extras/migrations/20251220144550_schema_update/migration.sql b/litellm-proxy-extras/litellm_proxy_extras/migrations/20251220144550_schema_update/migration.sql new file mode 100644 index 0000000000..b40defec30 --- /dev/null +++ b/litellm-proxy-extras/litellm_proxy_extras/migrations/20251220144550_schema_update/migration.sql @@ -0,0 +1,20 @@ +-- CreateTable +CREATE TABLE "LiteLLM_SkillsTable" ( + "skill_id" TEXT NOT NULL, + "display_title" TEXT, + "description" TEXT, + "instructions" TEXT, + "source" TEXT NOT NULL DEFAULT 'custom', + "latest_version" TEXT, + "file_content" BYTEA, + "file_name" TEXT, + "file_type" TEXT, + "metadata" JSONB DEFAULT '{}', + "created_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + "created_by" TEXT, + "updated_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + "updated_by" TEXT, + + CONSTRAINT "LiteLLM_SkillsTable_pkey" PRIMARY KEY ("skill_id") +); +