what is the best way to save timestamp with prisma...
# orm-help
o
what is the best way to save timestamp with prisma modelling.
n
In the schema, DateTime type with "@default_(_now_())"_ is usually easiest for creation. Updating can be done with "@updatedAt"
o
thanks @Nour Elba