From a46075fc5ef58425e730be49d557816a0b1dabd5 Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Fri, 8 May 2026 07:04:38 +0800 Subject: [PATCH] =?UTF-8?q?feat(mcp):=20add=20migration=200007=20down=20?= =?UTF-8?q?=E2=80=94=20drop=20mcp=5Ftokens?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- migrations/0007_mcp.down.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 migrations/0007_mcp.down.sql diff --git a/migrations/0007_mcp.down.sql b/migrations/0007_mcp.down.sql new file mode 100644 index 0000000..962f8d1 --- /dev/null +++ b/migrations/0007_mcp.down.sql @@ -0,0 +1,4 @@ +DROP INDEX IF EXISTS idx_mcp_tokens_expires; +DROP INDEX IF EXISTS idx_mcp_tokens_session; +DROP INDEX IF EXISTS idx_mcp_tokens_user_active; +DROP TABLE IF EXISTS mcp_tokens;