// // 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 Games struct { GameID uuid.UUID `sql:"primary_key"` Variant string DictVersion string Seed int64 Status string Players int16 ToMove int16 TurnStartedAt time.Time TurnTimeoutSecs int32 HintsAllowed bool HintsPerPlayer int16 MoveCount int32 EndReason *string CreatedAt time.Time UpdatedAt time.Time FinishedAt *time.Time OpenDeadlineAt *time.Time DropoutTiles string MultipleWordsPerTurn bool VsAi bool }