From 448d519008c0a2c5171e27f4cc894a364a442227 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=B8=85?= <2944435683> Date: Fri, 10 Apr 2026 17:42:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=88=A0=E9=99=A4=E8=A7=86?= =?UTF-8?q?=E9=A2=91=E6=96=AD=E5=8E=BB=E6=8E=89=E7=94=9F=E6=88=90=E5=88=86?= =?UTF-8?q?=E9=95=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes/production/workbench/deleteTrack.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/routes/production/workbench/deleteTrack.ts b/src/routes/production/workbench/deleteTrack.ts index 5541175..e309525 100644 --- a/src/routes/production/workbench/deleteTrack.ts +++ b/src/routes/production/workbench/deleteTrack.ts @@ -13,7 +13,6 @@ export default router.post( async (req, res) => { const { id } = req.body; await u.db("o_videoTrack").where("id", id).delete(); - await u.db("o_storyboard").where("trackId", id).delete(); res.status(200).send(success({ message: "视频段删除成功" })); }, );