forked from keystonejs/keystone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.prisma
48 lines (41 loc) · 1.46 KB
/
schema.prisma
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// This file is automatically generated by Keystone, do not modify it manually.
// Modify your Keystone config when you want to change this.
datasource sqlite {
url = env("DATABASE_URL")
shadowDatabaseUrl = env("SHADOW_DATABASE_URL")
provider = "sqlite"
}
generator client {
provider = "prisma-client-js"
output = "node_modules/.prisma/client"
}
model Todo {
id String @id @default(cuid())
label String @default("")
isComplete Boolean @default(false)
isPrivate Boolean @default(false)
assignedTo Person? @relation("Todo_assignedTo", fields: [assignedToId], references: [id])
assignedToId String? @map("assignedTo")
@@index([assignedToId])
}
model Person {
id String @id @default(cuid())
name String @default("")
email String @unique @default("")
password String
role Role? @relation("Person_role", fields: [roleId], references: [id])
roleId String? @map("role")
tasks Todo[] @relation("Todo_assignedTo")
@@index([roleId])
}
model Role {
id String @id @default(cuid())
name String @default("")
canCreateTodos Boolean @default(false)
canManageAllTodos Boolean @default(false)
canSeeOtherPeople Boolean @default(false)
canEditOtherPeople Boolean @default(false)
canManagePeople Boolean @default(false)
canManageRoles Boolean @default(false)
assignedTo Person[] @relation("Person_role")
}