mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 08:01:06 +00:00
* 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"
11 lines
496 B
SQL
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`; |