spherehq/sphere

View on GitHub
packages/database/schemas/user.prisma

Summary

Maintainability
Test Coverage
type User {
id: ID! @id
providerId: String! @unique
associatedWith: Account!
@relation(name: "UserAssociatedWithAccount", onDelete: CASCADE)
}