Skip to content

SlackIntegration

reference
1 min readUpdated

Kind: Database Model

Source: atloria-monorepo/libs/database/prisma/schema.prisma

Fields

FieldTypeRequiredKey
idStringPK
projectIdString
organizationIdString
agentIdString-
workspaceIdString
teamNameString
botTokenString
appIdString-
isEnabledBoolean
createdAtDateTime
updatedAtDateTime

Diagram

mermaid
erDiagram
    SlackIntegration {
        id String [PK]
        projectId String
        organizationId String
        agentId String?
        workspaceId String
        teamName String
        botToken String
        appId String?
        isEnabled Boolean
        createdAt DateTime
        updatedAt DateTime
    }
    SlackIntegration ||--|| Project : ""
    SlackIntegration ||--|| Organization : ""
    SlackIntegration ||--|| SupportAgentConfig : ""

Relationships

  • HAS_ONE → Project
  • HAS_ONE → Organization
  • HAS_ONE → SupportAgentConfig

Was this page helpful?

Download as PDF