Refactor and remove sqlite and replace with MySQL
This commit is contained in:
15
internal/models/prediction.go
Normal file
15
internal/models/prediction.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
)
|
||||
|
||||
type NextMachineBallsetPrediction struct {
|
||||
NextDrawDate string
|
||||
CurrentMachine string
|
||||
EstimatedNextMachine string
|
||||
MachineTransitionPct float64
|
||||
CurrentBallset sql.NullString
|
||||
EstimatedNextBallset sql.NullString
|
||||
BallsetTransitionPct sql.NullFloat64
|
||||
}
|
||||
Reference in New Issue
Block a user