mirror of
https://github.com/Dvorinka/MyClubServer.git
synced 2026-06-03 18:22:57 +00:00
11 lines
294 B
Go
11 lines
294 B
Go
package models
|
|
|
|
type CommentReport struct {
|
|
BaseModel
|
|
CommentID uint `json:"comment_id" gorm:"index;not null"`
|
|
UserID uint `json:"user_id" gorm:"index;not null"`
|
|
Reason string `json:"reason" gorm:"size:255"`
|
|
}
|
|
|
|
func (CommentReport) TableName() string { return "comment_reports" }
|