Update Order

This commit is contained in:
aditya.siregar 2024-08-14 00:53:18 +07:00
parent 0242fcb03c
commit 3e138d72a3

View File

@ -21,8 +21,6 @@ type Product struct {
DeletedAt *time.Time `gorm:"column:deleted_at"` DeletedAt *time.Time `gorm:"column:deleted_at"`
CreatedBy int64 `gorm:"type:int;column:created_by"` CreatedBy int64 `gorm:"type:int;column:created_by"`
UpdatedBy int64 `gorm:"type:int;column:updated_by"` UpdatedBy int64 `gorm:"type:int;column:updated_by"`
Region string `gorm:"type:varchar;column:region"`
Regency string `gorm:"type:varchar;column:regency"`
} }
func (Product) TableName() string { func (Product) TableName() string {