Files
reloading-manager/backend/models/bullets/models.go
2025-04-18 17:30:11 -04:00

28 lines
757 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.29.0
package bullets
import (
"github.com/jackc/pgx/v5/pgtype"
)
type Bullet struct {
ID pgtype.UUID `json:"id"`
Name string `json:"name"`
Weight int32 `json:"weight"`
Diameter int32 `json:"diameter"`
Meta []byte `json:"meta"`
Photo []byte `json:"photo"`
ManufacturerID pgtype.UUID `json:"manufacturer_id"`
CreatedAt pgtype.Timestamp `json:"created_at"`
}
type Manufacturer struct {
ID pgtype.UUID `json:"id"`
Name string `json:"name"`
Url pgtype.Text `json:"url"`
CreatedAt pgtype.Timestamp `json:"created_at"`
}