🧑‍💻 Another Prisma Example

This commit is contained in:
Axel Olausson Holtenäs 2022-10-19 10:36:19 +02:00
parent f758072e9d
commit 38f06ee771

View file

@ -0,0 +1,6 @@
const deleteGuildCounter = await prisma.guildCounter.deleteMany({
where: {
guildId: guild.id,
channelId: discordChannel.id,
},
});