Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Db *gorm.DB
Functions ¶
Types ¶
type Links ¶
type Links struct { ID uint `gorm:"primaryKey;autoIncrement"` Title string `gorm:"size:255"` Address string `gorm:"size:255"` UserID uint `gorm:"not null"` User Users `gorm:"foreignKey:UserID;references:ID;constraint:OnUpdate:CASCADE,OnDelete:SET NULL"` CreatedAt time.Time `gorm:"autoCreateTime"` UpdatedAt time.Time `gorm:"autoUpdateTime"` }
Click to show internal directories.
Click to hide internal directories.