summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-02-24 17:24:38 +0100
committerTor Andersson <tor@ccxvii.net>2023-02-26 12:53:53 +0100
commit6a4be5ae1b89a4e79a83239f184f394efcabeeba (patch)
tree4344f14f8b9911af91e5bb978fd75f334e495b34 /schema.sql
parent9e068aa062bb07f1f1b8704beffefbcaba260eb7 (diff)
downloadserver-6a4be5ae1b89a4e79a83239f184f394efcabeeba.tar.gz
Invite player system.
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 e2ca8a4..a3c0e2b 100644
--- a/schema.sql
+++ b/schema.sql
@@ -322,6 +322,7 @@ create table if not exists players (
game_id integer,
role text,
user_id integer,
+ is_invite integer,
primary key (game_id, role)
) without rowid;