mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 08:01:06 +00:00
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:
11
SQL/migrate/V031__more_do_options.sql
Normal file
11
SQL/migrate/V031__more_do_options.sql
Normal 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`;
|
||||
Reference in New Issue
Block a user