diff --git a/SQL/database_changelog.md b/SQL/database_changelog.md index def6732b205..5ef22486a28 100644 --- a/SQL/database_changelog.md +++ b/SQL/database_changelog.md @@ -2,7 +2,7 @@ Any time you make a change to the schema files, remember to increment the databa Make sure to also update `DB_MAJOR_VERSION` and `DB_MINOR_VERSION`, which can be found in `code/__DEFINES/subsystem.dm`. -The latest database version is 5.34 (for bubberstation) (5.32 for /tg/); The query to update the schema revision table is: +The latest database version is 5.34 (for bubberstation) (5.31 for /tg/); The query to update the schema revision table is: ```sql INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 34); @@ -18,16 +18,6 @@ In any query remember to add a prefix to the table names if you use one. --- -Version 5.32, 31 May 2025, by TealSeer -Change column name of `manifest` table because `character` is a reserved word. - -```sql -ALTER TABLE `manifest` - RENAME COLUMN `character` TO `character_name`; -``` - ---- - Version 5.31, 3 May 2025, by Atlanta-Ned Adds a `manifest` table. diff --git a/SQL/tgstation_schema.sql b/SQL/tgstation_schema.sql index e0762d86e71..75cf0786144 100644 --- a/SQL/tgstation_schema.sql +++ b/SQL/tgstation_schema.sql @@ -118,7 +118,7 @@ CREATE TABLE IF NOT EXISTS `citation` ( `sender_ic` varchar(64) NOT NULL DEFAULT '' COMMENT 'Longer because this is the character name, not the ckey', `recipient` varchar(64) NOT NULL DEFAULT '' COMMENT 'Longer because this is the character name, not the ckey', `crime` text NOT NULL, - `crime_desc` text NULL DEFAULT NULL, + `crime_desc` text NULL DEFAULT NULL, `fine` int(4) DEFAULT NULL, `paid` int(4) DEFAULT 0, `timestamp` datetime NOT NULL, diff --git a/SQL/tgstation_schema_prefixed.sql b/SQL/tgstation_schema_prefixed.sql index f372c8c6d61..ca9c87cccc5 100644 --- a/SQL/tgstation_schema_prefixed.sql +++ b/SQL/tgstation_schema_prefixed.sql @@ -117,7 +117,7 @@ CREATE TABLE IF NOT EXISTS `SS13_citation` ( `sender_ic` varchar(64) NOT NULL DEFAULT '' COMMENT 'Longer because this is the character name, not the ckey', `recipient` varchar(64) NOT NULL DEFAULT '' COMMENT 'Longer because this is the character name, not the ckey', `crime` text NOT NULL, - `crime_desc` text NULL DEFAULT NULL, + `crime_desc` text NULL DEFAULT NULL, `fine` int(4) DEFAULT NULL, `paid` int(4) DEFAULT 0, `timestamp` datetime NOT NULL,