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:08:56 +0100 |
commit | 91e3abc285dab2918d717ec56743872f42b405cc (patch) | |
tree | 65ee06e46957dcea33c0c90e5838c36873df2de2 | |
parent | d501f42fd87cfd11d38080af581a91e28fb4e31b (diff) | |
download | julius-caesar-91e3abc285dab2918d717ec56743872f42b405cc.tar.gz |
Drop table roles.
-rw-r--r-- | rules.js | 5 | ||||
-rw-r--r-- | title.sql | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -6,6 +6,11 @@ exports.scenarios = [ // TODO: Avalon Digital scenarios? ]; +exports.roles = [ + "Caesar", + "Pompeius", +]; + const { CARDS, SPACES, EDGES, BLOCKS } = require('./data'); const APOLLO = 1; @@ -1,3 +1 @@ insert or replace into titles ( title_id, title_name, bgg ) values ( 'julius-caesar', 'Julius Caesar', 37836 ); -insert or replace into roles values ( 'julius-caesar', 'Caesar' ); -insert or replace into roles values ( 'julius-caesar', 'Pompeius' ); |