33 lines
702 B
Go
33 lines
702 B
Go
|
// Code generated by sqlc. DO NOT EDIT.
|
||
|
// versions:
|
||
|
// sqlc v1.25.0
|
||
|
// source: game.sql
|
||
|
|
||
|
package model
|
||
|
|
||
|
import (
|
||
|
"github.com/jackc/pgx/v5/pgtype"
|
||
|
)
|
||
|
|
||
|
type CreateGamesParams struct {
|
||
|
ID string
|
||
|
Date pgtype.Timestamptz
|
||
|
CoverageStatus string
|
||
|
LowCoverage bool
|
||
|
Minutes int32
|
||
|
PeriodType string
|
||
|
Scored bool
|
||
|
Status string
|
||
|
CompetitionSlug string
|
||
|
FixtureSlug string
|
||
|
AwayTeamSlug string
|
||
|
AwayGoals int32
|
||
|
AwayExtraTimeScore int32
|
||
|
AwayPenaltyScore int32
|
||
|
HomeTeamSlug string
|
||
|
HomeGoals int32
|
||
|
HomeExtraTimeScore int32
|
||
|
HomePenaltyScore int32
|
||
|
WinnerTeamSlug *string
|
||
|
}
|