1
2
3
4
5
6
7
|
insert or replace into titles ( title_id, title_name, bgg, is_symmetric ) values ( 'time-of-crisis', 'Time of Crisis', 164949, 1 );
insert or ignore into setups ( setup_name, title_id, player_count, scenario, options ) values
( 'Time of Crisis',
'time-of-crisis', 4, 'Standard', '{"players":4}' ),
( 'Time of Crisis - Age of Iron and Rust',
'time-of-crisis', 4, 'Expansion - Random', '{"players":4,"emperor":true}' )
;
|