forked from Wroclaw/WorkshopTasker
10 lines
338 B
TypeScript
10 lines
338 B
TypeScript
|
/* global defineEventHandler */
|
||
|
|
||
|
import { database } from "~/server/utils/database";
|
||
|
|
||
|
export default defineEventHandler(async (e) => {
|
||
|
if (!e.context.params?.id) return Error("id is not provided");
|
||
|
const rowID = e.context.params.id;
|
||
|
await database.execute("DELETE FROM `sch_baza_smartfony`.`lombardy` WHERE `id` = ?", [rowID]);
|
||
|
});
|