Add database indexes for PostID and approval status in MediaAttachment model

This commit is contained in:
2025-05-24 11:49:21 +03:30
parent 0f96344543
commit c4a192ac80

View File

@@ -24,7 +24,7 @@ type MediaAttachment struct {
Url string `json:"url"`
PreviewUrl string `json:"preview_url"`
RemoteUrl string `json:"remote_url"`
PostID string // Foreign key to Post
Approved bool `json:"approved"`
Rejected bool `json:"rejected"`
PostID string `gorm:"index:idx_post_approved"` // Foreign key to Post
Approved bool `json:"approved" gorm:"index:idx_post_approved"`
Rejected bool `json:"rejected" gorm:"index:idx_post_rejected"`
}