fixes plumbing (june tgu) (#1005)

* Update beefman.dm

* Update beefman.dm

* xsaxsfvvvvvvvv

* Update shaded_bloodsucker.dm

* poo

* Update tgstation.dme

* Create screenshot_humanoids__datum_species_beefman.png

* update paths

* more update paths

* basic mob chicks and random tiles

* p

* request consoles updatepath script

* Update README.md

* Create screenshot_antag_icons_vampiricaccident.png

* Create screenshot_humanoids__datum_species_human_felinid_nobraindamage.png

* Update SeleneStation.dmm

* Update PubbyStation.dmm

* Update PubbyStation.dmm

* Update PubbyStation.dmm

* Update PubbyStation.dmm

* FUCK this map
This commit is contained in:
SMOSMOSMOSMOSMO
2023-06-21 05:27:40 +03:00
committed by GitHub
parent 831ee9ad16
commit 3b338fbd5d
759 changed files with 131895 additions and 127833 deletions

View File

@@ -2,19 +2,27 @@ 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.23; The query to update the schema revision table is:
The latest database version is 5.24; The query to update the schema revision table is:
```sql
INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 23);
INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 24);
```
or
```sql
INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 23);
INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 24);
```
In any query remember to add a prefix to the table names if you use one.
-----------------------------------------------------
Version 5.24, 17 May 2023, by LemonInTheDark
Modified the library action table to fit ckeys properly, and to properly store ips.
```sql
ALTER TABLE `library_action` MODIFY COLUMN `ckey` varchar(32) NOT NULL;
ALTER TABLE `library_action` MODIFY COLUMN `ip_addr` int(10) unsigned NOT NULL;
```
-----------------------------------------------------
Version 5.23, 28 December 2022, by Mothblocks
Added `tutorial_completions` to mark what ckeys have completed contextual tutorials.

View File

@@ -270,10 +270,10 @@ CREATE TABLE `library_action` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`book` int(10) unsigned NOT NULL,
`reason` longtext DEFAULT NULL,
`ckey` varchar(11) NOT NULL DEFAULT '',
`ckey` varchar(32) NOT NULL DEFAULT '',
`datetime` datetime NOT NULL DEFAULT current_timestamp(),
`action` varchar(11) NOT NULL DEFAULT '',
`ip_addr` int(11) NOT NULL,
`ip_addr` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

View File

@@ -270,10 +270,10 @@ CREATE TABLE `SS13_library_action` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`book` int(10) unsigned NOT NULL,
`reason` longtext DEFAULT NULL,
`ckey` varchar(11) NOT NULL DEFAULT '',
`ckey` varchar(32) NOT NULL DEFAULT '',
`datetime` datetime NOT NULL DEFAULT current_timestamp(),
`action` varchar(11) NOT NULL DEFAULT '',
`ip_addr` int(11) NOT NULL,
`ip_addr` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;