diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-09-21 21:09:36 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-09-21 21:09:36 +0200 |
commit | 122b901651cc370ff2db5cd2dec6c59fa3feb8cf (patch) | |
tree | e5a7e89ac297c7aec769b4448c0e5899c9af4c6d /title.sql | |
parent | 92e63913222cc4d84adf080ee0c452549b78f4ce (diff) | |
download | pax-pamir-122b901651cc370ff2db5cd2dec6c59fa3feb8cf.tar.gz |
Add match making setups.
Diffstat (limited to 'title.sql')
-rw-r--r-- | title.sql | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1 +1,7 @@ -insert or replace into titles ( title_id, title_name, bgg ) values ( 'pax-pamir', 'Pax Pamir', 256960 ); +insert or replace into titles ( title_id, title_name, bgg, is_symmetric ) values ( 'pax-pamir', 'Pax Pamir', 256960, 1 ); +insert or ignore into setups ( title_id, player_count, scenario, options ) values + ( 'pax-pamir', 2, '2P', '{"open_hands":true}' ), + ( 'pax-pamir', 3, '3P', '{"open_hands":true}' ), + ( 'pax-pamir', 4, '4P', '{"open_hands":true}' ), + ( 'pax-pamir', 5, '5P', '{"open_hands":true}' ) +; |