Skip to content

Commit

Permalink
fix: update db schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ivopr committed Jun 5, 2023
1 parent b19a616 commit d2c21cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/client/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ enum Role {
}

model User {
id String @id @default(cuid())
id String @id @default(uuid())
email String @unique
username String @unique
password String
password String?
name String?
active Boolean @default(false)
role Role @default(USER)
Expand Down

0 comments on commit d2c21cc

Please sign in to comment.