Only Announce Faxes if someone doesnt have their PDA linked (#5291)

* Adds the ability to announce a fax only if someone doesnt have their PDA linked,

* Added SQL migration of expansion of do injunctions

* Changes "warning" to "reprimand"
This commit is contained in:
Werner
2018-10-07 00:18:38 +02:00
committed by GitHub
parent 3c904519cb
commit e3560362d8
2 changed files with 22 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
--
-- Adds HTML style value to the player preferences table.
--
ALTER TABLE `ss13_ccia_actions`
CHANGE COLUMN `type` `type` ENUM('injunction','suspension','warning','reprimand','demotion','other') NOT NULL COLLATE 'utf8_unicode_ci' AFTER `title`;
UPDATE ss13_ccia_actions SET type = "reprimand" WHERE type = "warning";
ALTER TABLE `ss13_ccia_actions`
CHANGE COLUMN `type` `type` ENUM('injunction','suspension','reprimand','demotion','other') NOT NULL COLLATE 'utf8_unicode_ci' AFTER `title`;