12 lines
291 B
Go
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"`
|
|
}
|