feat: Orgs Schema Changing `scopedMembers` to `orgUsers` (#9209)

* Change scopedMembers to orgMembers

* Change to orgUsers
This commit is contained in:
Joe Au-Yeung 2023-05-30 13:56:32 -04:00 committed by GitHub
parent fd539ad76c
commit 1776e5d082
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -266,7 +266,7 @@ model Team {
parentId Int?
parent Team? @relation("organization", fields: [parentId], references: [id], onDelete: Cascade)
children Team[] @relation("organization")
scopedMembers User[] @relation("scope")
orgUsers User[] @relation("scope")
webhooks Webhook[]
}