Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 1.31 KB

File metadata and controls

35 lines (24 loc) · 1.31 KB

NotificationChannelDeliveryAttempts

Description

Columns

Name Type Default Nullable Children Parents Comment
ID STRING(36) false
ChannelID STRING(36) false NotificationChannels
AttemptTimestamp TIMESTAMP false
Status STRING(MAX) false
Details JSON true

Constraints

Name Type Definition
PRIMARY_KEY PRIMARY_KEY PRIMARY KEY(ID, ChannelID)
FK_NotificationChannelDeliveryAttempt_NotificationChannel FOREIGN KEY FOREIGN KEY (ChannelID) REFERENCES NotificationChannels (ID) ON DELETE CASCADE

Indexes

Name Definition
IDX_NotificationChannelDeliveryAttempts_ChannelID_63C7D928059106C8 CREATE INDEX IDX_NotificationChannelDeliveryAttempts_ChannelID_63C7D928059106C8 ON NotificationChannelDeliveryAttempts (ChannelID)
IX_NotificationChannelDeliveryAttempt_AttemptTimestamp CREATE INDEX IX_NotificationChannelDeliveryAttempt_AttemptTimestamp ON NotificationChannelDeliveryAttempts (ChannelID, AttemptTimestamp)

Relations

er


Generated by tbls