mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 09:42:29 +00:00
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:
@@ -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.
|
||||
|
||||
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
|
||||
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.
|
||||
|
||||
-----------------------------------------------------
|
||||
Version 5.15, 2 June 2021, by Mothblocks
|
||||
Version 5.16, 2 June 2021, by Mothblocks
|
||||
Added verified admin connection log used for 2FA
|
||||
|
||||
```
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
*
|
||||
* 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
|
||||
|
||||
Reference in New Issue
Block a user