Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:ChildhoodCancerSociety/ANNIverse int…
Browse files Browse the repository at this point in the history
…o dev
  • Loading branch information
GeorgeIpsum committed Jun 14, 2023
2 parents 2600655 + 2a09889 commit 56cc43d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ model User {
}

model Team {
id String @id @default(cuid())
id String @id
name String
description String
users UserTeam[]
Expand Down Expand Up @@ -136,6 +136,10 @@ model Meeting {
updatedAt DateTime @updatedAt
}

model Event {
id String @id @default (cuid())
}

// M:M Relational models
model UserMeeting {
user User @relation(fields: [userId], references: [id])
Expand Down

0 comments on commit 56cc43d

Please sign in to comment.