12 lines
302 B
Go
12 lines
302 B
Go
|
|
package gorm_models
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type Wishlist struct {
|
||
|
|
ID uint `gorm:"primaryKey"`
|
||
|
|
CreatedAt time.Time `sql:"DEFAULT:NULL" gorm:"default:null"`
|
||
|
|
UpdatedAt time.Time `sql:"DEFAULT:NULL" gorm:"default:null"`
|
||
|
|
ProductID uint
|
||
|
|
Product Product
|
||
|
|
}
|