14 lines
227 B
Go
14 lines
227 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type UserFavorites struct {
|
|
UserID string `gorm:"primaryKey"`
|
|
PostID string `gorm:"primaryKey"`
|
|
CreatedAt time.Time
|
|
}
|
|
|
|
func (UserFavorites) TableName() string {
|
|
return "UserFavorites"
|
|
}
|