diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-09-21 21:10:57 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-09-21 21:10:57 +0200 |
commit | 21eb4623ffaf9a86986f3a9ac5d61b9cb38171cf (patch) | |
tree | a4f77fc00c4e2a72c2eb0dade2adf9586eb16718 /title.sql | |
parent | f3df0f68866261cdea3b34f7d8b624e59ba994b7 (diff) | |
download | rommel-in-the-desert-21eb4623ffaf9a86986f3a9ac5d61b9cb38171cf.tar.gz |
Add match making setups.
Diffstat (limited to 'title.sql')
-rw-r--r-- | title.sql | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1 +1,11 @@ insert or replace into titles ( title_id, title_name, bgg ) values ( 'rommel-in-the-desert', 'Rommel in the Desert', 84 ); +insert or ignore into setups ( title_id, player_count, scenario, options ) values + ( 'rommel-in-the-desert', 2, '1940', '{}' ), + ( 'rommel-in-the-desert', 2, '1941', '{}' ), + ( 'rommel-in-the-desert', 2, '1942', '{}' ), + ( 'rommel-in-the-desert', 2, 'Battleaxe', '{}' ), + ( 'rommel-in-the-desert', 2, 'Crusader', '{}' ), + ( 'rommel-in-the-desert', 2, 'Gazala', '{}' ), + ( 'rommel-in-the-desert', 2, 'Pursuit to Alamein', '{}' ), + ( 'rommel-in-the-desert', 2, '1941-42', '{}' ) +; |