why must it always be the hard way (#6271)

makes https://github.com/Skyrat-SS13/Skyrat-tg/pull/6221#pullrequestreview-681367860 compliant
This commit is contained in:
ORCACommander
2021-06-11 22:06:53 -04:00
committed by GitHub
parent 9fb95d561f
commit 40ab50c3fd
2 changed files with 5 additions and 5 deletions

View File

@@ -1,15 +1,15 @@
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. 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.15; The query to update the schema revision table is: The latest database version is 5.16; The query to update the schema revision table is:
INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 15); INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 16);
or or
INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 15); INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 16);
In any query remember to add a prefix to the table names if you use one. In any query remember to add a prefix to the table names if you use one.
----------------------------------------------------- -----------------------------------------------------
Version 5.15, 2 June 2021, by Mothblocks Version 5.16, 2 June 2021, by Mothblocks
Added verified admin connection log used for 2FA Added verified admin connection log used for 2FA
``` ```

View File

@@ -20,7 +20,7 @@
* *
* make sure you add an update to the schema_version stable in the db changelog * make sure you add an update to the schema_version stable in the db changelog
*/ */
#define DB_MINOR_VERSION 15 #define DB_MINOR_VERSION 16
//! ## Timing subsystem //! ## Timing subsystem