Update schema.prisma name -> username

This commit is contained in:
Rudi Regentonne 2025-05-07 13:40:10 +02:00 committed by GitHub
parent e1eb9aaed1
commit 92d7ab1513

View file

@ -10,7 +10,7 @@ datasource db {
model User {
id String @id @default(uuid())
name String
username String
email String
password String
}