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/product.go
Damian Wessels 7c3d3e03bc controller added
Registrierung hinzugefügt
2023-11-12 20:28:09 +01:00

17 lines
266 B
Go

package models
import (
"gorm.io/gorm"
"time"
)
type Product struct {
ID string
ParentID string
Name string
Categories []Category `gorm:"many2many:product_categories;"`
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt gorm.DeletedAt
}