Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timthedev07 committed Jan 8, 2024
1 parent df80fe1 commit a010fcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ model User {
id String @id @default(cuid())
username String @unique @db.VarChar(32)
blocked Boolean @default(false)
credits Int @default(0)
credits Int @default(50)
joinedDate DateTime @default(now())
joinedYear Int? @db.SmallInt // the year group of the user when joined; only applies to students
roles Role[]
Expand Down

0 comments on commit a010fcd

Please sign in to comment.