Skip to content

Instantly share code, notes, and snippets.

@brandonchadlange
Last active October 13, 2022 07:04
Show Gist options
  • Save brandonchadlange/c6aefd86ef9f920ca2e0640f19de8114 to your computer and use it in GitHub Desktop.
Save brandonchadlange/c6aefd86ef9f920ca2e0640f19de8114 to your computer and use it in GitHub Desktop.
Event service models
model Event {
id Int @id @default(autoincrement())
name String
actions Action[]
}
model Action {
id Int @id @default(autoincrement())
name String
endpoint String
event Event @relation(fields: [event_id], references: [id])
event_id Int
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment