Last active
May 9, 2023 02:21
-
-
Save Hachikoi-the-creator/9ccff455c775d13884015bd53538ab53 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
model Owner { | |
id Int @id @default(autoincrement()) | |
name String | |
dogs Dog[] | |
} | |
model Dog { | |
id Int @id @default(autoincrement()) | |
name String | |
age Int @default(1) | |
ownerId Int | |
owner Owner @relation(fields: [ownerId], references: [id]) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment