mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-10 04:40:46 -05:00
12 lines
216 B
TypeScript
12 lines
216 B
TypeScript
import { sql } from "~/db/sql";
|
|
|
|
const stm = sql.prepare(/* sql */ `
|
|
update "AllTeam"
|
|
set "deletedAt" = strftime('%s', 'now')
|
|
where "id" = @id
|
|
`);
|
|
|
|
export function deleteTeam(id: number) {
|
|
stm.run({ id });
|
|
}
|