aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/db/models.go
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-11 20:53:17 +0900
committernsfisis <nsfisis@gmail.com>2024-08-11 20:53:17 +0900
commitfe8b14ccc77c829a2baa4034edb22daff9d5d8f8 (patch)
tree37528798ede5a89b1a7be6c6ee2fec20395668a2 /backend/db/models.go
parente3502d9e649fe61bb0ba4046b2c23c0d78bc92e9 (diff)
parent0c448f5d403a084389acb0b3d215f8728a599302 (diff)
downloadphperkaigi-2025-albatross-fe8b14ccc77c829a2baa4034edb22daff9d5d8f8.tar.gz
phperkaigi-2025-albatross-fe8b14ccc77c829a2baa4034edb22daff9d5d8f8.tar.zst
phperkaigi-2025-albatross-fe8b14ccc77c829a2baa4034edb22daff9d5d8f8.zip
Merge branch 'feat/send-problem-before-starting-game'
Diffstat (limited to 'backend/db/models.go')
-rw-r--r--backend/db/models.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/db/models.go b/backend/db/models.go
index 800c183..f6e7ed1 100644
--- a/backend/db/models.go
+++ b/backend/db/models.go
@@ -16,7 +16,7 @@ type Game struct {
DurationSeconds int32
CreatedAt pgtype.Timestamp
StartedAt pgtype.Timestamp
- ProblemID *int32
+ ProblemID int32
}
type GamePlayer struct {