sendou.ink/app/features/vods/VodRepository.server.ts
Kalle 63f7741c7a
Some checks are pending
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
Revert "Replace the old sql queries with kysely queries for the VODs feature (#2423)"
This reverts commit 55c580f53a.
2025-09-02 19:45:30 +03:00

6 lines
149 B
TypeScript

import { db } from "~/db/sql";
export function deleteById(id: number) {
return db.deleteFrom("UnvalidatedVideo").where("id", "=", id).execute();
}