13 lines
263 B
Go
13 lines
263 B
Go
|
|
package models
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type Carts struct {
|
||
|
|
Cart_id uint `gorm:"primaryKey"`
|
||
|
|
User_id uint
|
||
|
|
User User `gorm:"references:User_id"`
|
||
|
|
Created_at time.Time
|
||
|
|
Removed_at time.Time `gorm:"default:null"`
|
||
|
|
Is_removed bool `gorm:"default:false"`
|
||
|
|
}
|