diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-02-14 13:29:40 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:19:39 +0100 |
commit | eafcc44779d41a8e30a59909b09f45e43dbc017b (patch) | |
tree | ae79b9ccec32059af4d8183171c938aae88c60aa | |
parent | c798b7fa59579eea4c5823925e43b15658a30095 (diff) | |
download | crusader-rex-eafcc44779d41a8e30a59909b09f45e43dbc017b.tar.gz |
Drop table roles.
-rw-r--r-- | rules.js | 5 | ||||
-rw-r--r-- | title.sql | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -12,6 +12,11 @@ exports.scenarios = [ "Standard" ]; +exports.roles = [ + "Franks", + "Saracens", +]; + const { CARDS, BLOCKS, TOWNS, PORTS, ROADS, SHIELDS } = require('./data'); const FRANKS = "Franks"; @@ -1,3 +1 @@ insert or ignore into titles ( title_id, title_name, bgg ) values ( 'crusader-rex', 'Crusader Rex', 8481 ); -insert or ignore into roles values ( 'crusader-rex', 'Franks' ); -insert or ignore into roles values ( 'crusader-rex', 'Saracens' ); |