Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/yeukfei02/dogApi into master
Browse files Browse the repository at this point in the history
  • Loading branch information
yeukfei02 committed Oct 17, 2020
2 parents 4c9cfaa + d319d23 commit 0faf5bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ datasource postgresql {
}

model dog {
id Int @default(autoincrement()) @id
id Int @id @default(autoincrement())
bredFor String?
breedGroup String?
height Json?
Expand All @@ -23,7 +23,7 @@ model dog {
}

model dog_images {
id Int @default(autoincrement()) @id
id Int @id @default(autoincrement())
width String?
height String?
url String?
Expand All @@ -33,7 +33,7 @@ model dog_images {
}

model dog_user {
id Int @default(autoincrement()) @id
id Int @id @default(autoincrement())
email String
password String
createdAt DateTime @default(now())
Expand Down

0 comments on commit 0faf5bf

Please sign in to comment.