mirror of
https://github.com/Dvorinka/MyClubServer.git
synced 2026-06-04 10:42:57 +00:00
11 lines
370 B
Go
11 lines
370 B
Go
package models
|
|
|
|
type CommentReaction struct {
|
|
BaseModel
|
|
CommentID uint `json:"comment_id" gorm:"index;not null"`
|
|
UserID uint `json:"user_id" gorm:"index;not null"`
|
|
Type string `json:"type" gorm:"size:24;not null;index"` // like|heart|smile|laugh|thumbs_up|thumbs_down|sad|angry
|
|
}
|
|
|
|
func (CommentReaction) TableName() string { return "comment_reactions" }
|