I want to add these four fields to all my models. ...
# orm-help
b
I want to add these four fields to all my models. Is there a DRY PRISMA way to do this?:
Copy code
// Timestamps
  created_at       DateTime @default(now()) @db.Timestamptz()
  created_by       String
  last_modified_at DateTime @updatedAt @db.Timestamptz()
  last_modified_by String
n
Not at the moment, but we have a Feature Request for Interface type which would solve this: #2506
If you could leave a 👍 to the Feature Request then it would help our product team prioritise it
b
Ok thanks.