You've already forked reloading-manager
Reviewed-on: rrise/reloading-manager#26 Co-authored-by: Ron Rise <ron@siteworxpro.com> Co-committed-by: Ron Rise <ron@siteworxpro.com>
23 lines
414 B
Go
23 lines
414 B
Go
//
|
|
// Code generated by go-jet DO NOT EDIT.
|
|
//
|
|
// WARNING: Changes to this file may cause incorrect behavior
|
|
// and will be lost if the code is regenerated
|
|
//
|
|
|
|
package model
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
"time"
|
|
)
|
|
|
|
type Primers struct {
|
|
ID uuid.UUID `sql:"primary_key"`
|
|
Name string
|
|
Meta *string
|
|
Photo *[]byte
|
|
ManufacturerID uuid.UUID
|
|
CreatedAt time.Time
|
|
}
|