Allows players to send more visible adminhelps when no admins are on, which'll definitely alert admins (#62711)

Co-authored-by: Watermelon914 <3052169-Watermelon914@users.noreply.gitlab.com>
This commit is contained in:
Watermelon914
2021-11-20 11:06:50 +00:00
committed by GitHub
parent 25a30cc5e1
commit fb8d95a2f5
15 changed files with 319 additions and 43 deletions

View File

@@ -1,13 +1,21 @@
Any time you make a change to the schema files, remember to increment the database schema version. Generally increment the minor number, major should be reserved for significant changes to the schema. Both values go up to 255.
The latest database version is 5.17; The query to update the schema revision table is:
The latest database version is 5.19; The query to update the schema revision table is:
INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 18);
INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 19);
or
INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 18);
INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 19);
In any query remember to add a prefix to the table names if you use one.
-----------------------------------------------------
Version 5.19, 10 November 2021, by WalterMeldron
Adds an urgent column to tickets for ahelps marked as urgent.
```
ALTER TABLE `ticket` ADD COLUMN `urgent` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0' AFTER `sender`;
```
-----------------------------------------------------
Version 5.18, 1 November 2021, by Mothblocks
Added `known_alts` table for tracking who not to create suspicious logins for.

View File

@@ -588,6 +588,7 @@ CREATE TABLE `ticket` (
`round_id` int(11) unsigned NULL,
`ticket` smallint(11) unsigned NOT NULL,
`action` varchar(20) NOT NULL DEFAULT 'Message',
`urgent` TINYINT(1) unsigned NOT NULL DEFAULT '0',
`message` text NOT NULL,
`timestamp` datetime NOT NULL,
`recipient` varchar(32) DEFAULT NULL,

View File

@@ -588,6 +588,7 @@ CREATE TABLE `SS13_ticket` (
`round_id` int(11) unsigned NULL,
`ticket` smallint(11) unsigned NOT NULL,
`action` varchar(20) NOT NULL DEFAULT 'Message',
`urgent` TINYINT(1) unsigned NOT NULL DEFAULT '0',
`message` text NOT NULL,
`timestamp` datetime NOT NULL,
`recipient` varchar(32) DEFAULT NULL,