package
Version:
v0.0.0-...-1070708
Opens a new window with list of versions in this module.
Published: May 21, 2022
License: Apache-2.0
Opens a new window with license information.
Imports: 5
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Account struct {
Id uint64 `gorm:"primary_key"`
Name string `gorm:"index:idx_name,unique"`
Password string
CreatedAt time.Time
}
type Favorite struct {
UserId uint64 `gorm:"index:idx_user_id"`
VideoId uint64 `gorm:"index:idx_video_id"`
CreatedAt time.Time `gorm:"index:idx_created_at"`
}
type Follow struct {
UserId uint64 `gorm:"index:idx_user_id"`
ToUserId uint64 `gorm:"index:idx_to_user_id"`
CreatedAt time.Time `gorm:"index:idx_created_at"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.