This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
shop/app/models/ProductImage.go
Damian Wessels 54fdfe30a9 Producte show
Producte werden nun angezeigt .
2023-11-14 20:27:23 +01:00

17 lines
425 B
Go

package models
import "time"
type ProductImage struct {
ID string `gorm:"size:36;not null;uniqueIndex;primary_key"`
Product Product
ProductID string `gorm:"size:36;index"`
Path string `gorm:"type:text"`
ExtraLarge string `gorm:"type:text"`
Large string `gorm:"type:text"`
Medium string `gorm:"type:text"`
Small string `gorm:"type:text"`
CreatedAt time.Time
UpdatedAt time.Time
}