mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
6 lines
195 B
JavaScript
6 lines
195 B
JavaScript
import { prisma, runQuery } from 'lib/db/relational';
|
|
|
|
export async function resetWebsite(website_id) {
|
|
return runQuery(prisma.$queryRaw`delete from session where website_id=${website_id}`);
|
|
}
|