diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-09-15 13:08:03 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-09-21 21:08:57 +0200 |
commit | 0fcf0a53f80077b3aaad1e4e8290ded060906704 (patch) | |
tree | 7b8df5bccdefa9f996c4833180c1233ca2d1b364 | |
parent | e877ac57c67e73fd0c4500498f5a573dc5b30745 (diff) | |
download | nevsky-0fcf0a53f80077b3aaad1e4e8290ded060906704.tar.gz |
Add match making setups.
-rw-r--r-- | title.sql | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1 +1,9 @@ insert or replace into titles ( title_id, title_name, bgg ) values ( 'nevsky', 'Nevsky', 249590 ); +insert or ignore into setups ( title_id, player_count, scenario, options ) values + ( 'nevsky', 2, 'Pleskau (Quickstart)', '{}' ), + ( 'nevsky', 2, 'Watland', '{}' ), + ( 'nevsky', 2, 'Return of the Prince', '{}' ), + ( 'nevsky', 2, 'Return of the Prince (Nicolle)', '{}' ), + ( 'nevsky', 2, 'Peipus', '{}' ), + ( 'nevsky', 2, 'Crusade on Novgorod', '{}' ) +; |