Skip to content

Commit

Permalink
Merge branch 'main' into program-links-relation
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-tey committed Nov 18, 2024
2 parents 33eebba + 7f0e0ef commit c25a96a
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion apps/web/prisma/schema/dashboard.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ model Dashboard {
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index(linkId)
@@index(projectId)
@@index(userId)
}
1 change: 0 additions & 1 deletion apps/web/prisma/schema/jackson.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ model jackson_index {
key String @db.VarChar(250)
storeKey String @db.VarChar(250)
@@index([key], map: "_jackson_index_key")
@@index([key, storeKey], map: "_jackson_index_key_store")
}

Expand Down
2 changes: 0 additions & 2 deletions apps/web/prisma/schema/link.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ model Link {
@@unique([domain, key])
@@unique([projectId, externalId])
@@unique([projectId, identifier])
@@index(projectId)
@@index(domain)
@@index(trackConversion)
@@index(proxy)
@@index(password)
Expand Down
2 changes: 0 additions & 2 deletions apps/web/prisma/schema/program.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ model ProgramEnrollment {
@@unique([partnerId, programId])
@@index([programId])
@@index([linkId])
}

enum ProgramApplicationStatus {
Expand Down Expand Up @@ -135,5 +134,4 @@ model ProgramInvite {
@@unique([email, programId])
@@index([programId])
@@index([linkId])
}
1 change: 0 additions & 1 deletion apps/web/prisma/schema/tag.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,5 @@ model LinkTag {
tagId String
@@unique([linkId, tagId])
@@index(linkId)
@@index(tagId)
}
1 change: 0 additions & 1 deletion apps/web/prisma/schema/utm.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,4 @@ model UtmTemplate {
@@unique([projectId, name])
@@index(userId)
@@index(projectId)
}

0 comments on commit c25a96a

Please sign in to comment.