Files
2026-04-22 09:13:47 +02:00

12 lines
291 B
Go

package ptpl
import "gorm.io/gorm"
// PtplItem is a sample GORM entity owned by this module.
type PtplItem struct {
gorm.Model
Name string `gorm:"type:varchar(255);not null" json:"name"`
Description string `json:"description"`
UserID uint `gorm:"index" json:"user_id"`
}