mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-20 21:33:54 -07:00
Removed client
column from bb_bt_tracker table (#1128)
This commit is contained in:
parent
709e6a53f0
commit
fda2bf2dee
2 changed files with 3 additions and 1 deletions
|
@ -362,7 +362,6 @@ CREATE TABLE IF NOT EXISTS `bb_bt_tracker`
|
|||
`ip` VARCHAR(42) DEFAULT NULL,
|
||||
`ipv6` VARCHAR(42) DEFAULT NULL,
|
||||
`port` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`client` VARCHAR(51) NOT NULL DEFAULT 'Unknown',
|
||||
`seeder` TINYINT(1) NOT NULL DEFAULT '0',
|
||||
`releaser` TINYINT(1) NOT NULL DEFAULT '0',
|
||||
`tor_type` TINYINT(1) NOT NULL DEFAULT '0',
|
||||
|
|
|
@ -91,3 +91,6 @@ INSERT INTO `bb_extensions` VALUES ('997', '4', 'tif', '');
|
|||
INSERT INTO `bb_extensions` VALUES ('998', '4', 'tiff', '');
|
||||
DELETE FROM `bb_extensions` WHERE `extension` = 'tga';
|
||||
INSERT INTO `bb_extensions` VALUES ('999', '4', 'tga', '');
|
||||
|
||||
// 2.4.0-rc1
|
||||
ALTER TABLE `bb_bt_tracker` DROP COLUMN `client`;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue