We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e27538 commit 6dcaa34Copy full SHA for 6dcaa34
apps/api/prisma/schema.prisma
@@ -68,6 +68,7 @@ type GroupSettings {
68
defaultIdentificationMethod SubjectIdentificationMethod
69
idValidationRegex String?
70
idValidationRegexErrorMessage ErrorMessage?
71
+ subjectIdDisplayLength Int?
72
}
73
74
model Group {
@@ -82,8 +83,7 @@ model Group {
82
83
settings GroupSettings
84
sessions Session[]
85
subjects Subject[] @relation(fields: [subjectIds], references: [id])
- subjectIds String[]
86
- subjectDisplayLength String?
+ subjectIds String[]
87
type GroupType
88
userIds String[] @db.ObjectId
89
users User[] @relation(fields: [userIds], references: [id])
0 commit comments