@a_team/prisma 1.0.15 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ model User {
|
|
|
4
4
|
lastName String?
|
|
5
5
|
username String? @unique(map: "username_1")
|
|
6
6
|
email String? @unique(map: "email_1")
|
|
7
|
-
isAdmin Boolean
|
|
7
|
+
isAdmin Boolean @default(false)
|
|
8
8
|
createdMissionsModels Mission[] @relation("creator")
|
|
9
9
|
ownedMissionsModels Mission[] @relation("ownerModel")
|
|
10
10
|
type String
|