6 lines
143 B
TypeScript
6 lines
143 B
TypeScript
const deleteGuildCounter = await prisma.guildCounter.deleteMany({
|
|
where: {
|
|
guildId: guild.id,
|
|
channelId: discordChannel.id,
|
|
},
|
|
});
|