feat: add organization schema
This commit is contained in:
@@ -1,12 +1,11 @@
|
||||
model AuthIdentity {
|
||||
id String @id @default(uuid())
|
||||
email String @unique
|
||||
password String
|
||||
isVerified Boolean @default(false)
|
||||
createdAt DateTime @default(now())
|
||||
organizationMemberships OrganizationUserMembership[]
|
||||
verifications AuthVerification[]
|
||||
sentInvitations OrganizationInvitation[]
|
||||
id String @id @default(uuid())
|
||||
email String @unique
|
||||
password String
|
||||
isVerified Boolean @default(false)
|
||||
createdAt DateTime @default(now())
|
||||
memberships OrganizationMember[]
|
||||
verifications AuthVerification[]
|
||||
}
|
||||
|
||||
model AuthVerification {
|
||||
|
||||
Reference in New Issue
Block a user