10 lines
159 B
Go
10 lines
159 B
Go
package pgModels
|
|
|
|
import "time"
|
|
|
|
type UserFavorite struct {
|
|
UserID string `gorm:"primaryKey"`
|
|
PostID string `gorm:"primaryKey"`
|
|
CreatedAt time.Time
|
|
}
|