diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-02-14 13:29:40 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 12:42:59 +0100 |
commit | d94426a04ac3a8744042f4ebd5d646486f4164fe (patch) | |
tree | 2e53e47f4e5546afda89d9f81a9c14b8dd924a98 | |
parent | 322981083df8c9871e24b5ddf9fb929c35179b63 (diff) | |
download | 300-earth-and-water-d94426a04ac3a8744042f4ebd5d646486f4164fe.tar.gz |
Drop table roles.
-rw-r--r-- | rules.js | 5 | ||||
-rw-r--r-- | title.sql | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -38,6 +38,11 @@ exports.scenarios = [ "Standard" ]; +exports.roles = [ + "Persia", + "Greece", +]; + const OBSERVER = "Observer"; const GREECE = "Greece"; const PERSIA = "Persia"; @@ -1,3 +1 @@ insert or ignore into titles ( title_id, title_name, bgg ) values ( '300-earth-and-water', '300: Earth & Water', 267058 ); -insert or ignore into roles values ( '300-earth-and-water', 'Persia' ); -insert or ignore into roles values ( '300-earth-and-water', 'Greece' ); |