Hello everyone, is there a query in prisma to aut...
# orm-help
d
Hello everyone, is there a query in prisma to automatically delete a field in the database after a particular time
1
n
Hey Dunsin 👋 this kind of functionality doesn’t exist in the any of the DBs Prisma supports. Prisma’s goal is to not add any functionality to a DB but rather provide a better interface to the capabilities of the underlying DB 🙂 so this kind of feature probably would need to be implement in your application code (e.g. using
setTimeout
) 🙌
d
Alright thanks