summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-01-31 01:24:59 +0100
committerTor Andersson <tor@ccxvii.net>2024-02-07 20:55:56 +0100
commit1e489124cb895e4c7f9c5d974ae846b760d1c6d8 (patch)
tree299ea5a24a8a184c11e1c79649cea210f6bac007 /schema.sql
parent8da3c4a8fedd7a26d4a323822146eb3a91d39cd1 (diff)
downloadserver-1e489124cb895e4c7f9c5d974ae846b760d1c6d8.tar.gz
Store matching replay_id in game_snap.
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/schema.sql b/schema.sql
index 650b379..36c2efc 100644
--- a/schema.sql
+++ b/schema.sql
@@ -435,6 +435,7 @@ create table if not exists game_replay (
create table if not exists game_snap (
game_id integer,
snap_id integer,
+ replay_id integer,
state text,
primary key (game_id, snap_id)
);