Files
Aurora.3/SQL/migrate/V031__more_do_options.sql
Werner e3560362d8 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"
2018-10-07 00:18:38 +02:00

11 lines
496 B
SQL

--
-- 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`;