30 lines
394 B
Go
30 lines
394 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.30.0
|
|
|
|
package db
|
|
|
|
import (
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
)
|
|
|
|
type Game struct {
|
|
ID int64
|
|
Name string
|
|
PlatformID int64
|
|
Score int32
|
|
ReleaseYear pgtype.Date
|
|
Finished pgtype.Date
|
|
}
|
|
|
|
type Platform struct {
|
|
ID int64
|
|
Name string
|
|
}
|
|
|
|
type User struct {
|
|
ID int64
|
|
Name string
|
|
Bio pgtype.Text
|
|
}
|