Skip to content

Instantly share code, notes, and snippets.

View eqqe's full-sized avatar
🌴
On vacation

Simon Rey eqqe

🌴
On vacation
  • Redhat
  • France
View GitHub Profile
@eqqe
eqqe / base.zmodel
Last active October 10, 2024 09:40
abstract model IdCreatedUpdated {
id String @id @default(uuid())
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
deletedAt DateTime?
deletedAtCascadeKey String?
@@deny('update', future().id != id || future().createdAt != createdAt )
}