Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DB *gorm.DB
Functions ¶
Types ¶
type Message ¶
type Message struct {
gorm.Model
ID int64 `gorm:"column:id;primary_key;AUTO_INCREMENT"`
MessageTime time.Time `gorm:"column:message_time;default:CURRENT_TIMESTAMP;NOT NULL"`
FromUserID int64 `gorm:"column:from_user_id;NOT NULL"`
ToUserID int64 `gorm:"column:to_user_id;NOT NULL"`
Content string `gorm:"column:content;NOT NULL"`
CreatedAt time.Time `gorm:"column:created_at;default:CURRENT_TIMESTAMP;NOT NULL"`
}
Click to show internal directories.
Click to hide internal directories.