mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
Fix IPs in telemetry_connections not being unsigned (#63573)
About The Pull Request Fixes IPs not being unsigned, causing problems where they get capped if the IP is too big. Not tested.
This commit is contained in:
@@ -685,7 +685,7 @@ CREATE TABLE `SS13_telemetry_connections` (
|
||||
`id` INT NOT NULL AUTO_INCREMENT,
|
||||
`ckey` VARCHAR(32) NOT NULL,
|
||||
`telemetry_ckey` VARCHAR(32) NOT NULL,
|
||||
`address` INT(10) NOT NULL,
|
||||
`address` INT(10) UNSIGNED NOT NULL,
|
||||
`computer_id` VARCHAR(32) NOT NULL,
|
||||
`first_round_id` INT(11) UNSIGNED NULL,
|
||||
`latest_round_id` INT(11) UNSIGNED NULL,
|
||||
|
||||
Reference in New Issue
Block a user