Added support 7z archives (#923)

This commit is contained in:
Roman Kelesidis 2023-10-02 00:01:51 +07:00 committed by GitHub
commit c9a17b86dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -714,6 +714,7 @@ VALUES ('1', 'gif', ''),
('2', 'zip', ''),
('2', 'rar', ''),
('2', 'ace', ''),
('2', '7z', ''),
('3', 'txt', ''),
('3', 'c', ''),
('3', 'h', ''),

View file

@ -70,3 +70,6 @@ ALTER TABLE `bb_privmsgs_text` CHANGE `privmsgs_text` `privmsgs_text` MEDIUMTEXT
ALTER TABLE `bb_bt_torrents` ADD COLUMN `info_hash_v2` VARBINARY(32) NOT NULL DEFAULT '';
ALTER TABLE `bb_bt_tracker_snap` ADD COLUMN `completed` INT(10) NOT NULL DEFAULT '0';
ALTER TABLE `bb_bt_tracker` CHANGE `complete` `complete` TINYINT(1) NOT NULL DEFAULT '0';
// 2.4.0-beta3
INSERT INTO `bb_extensions` VALUES ('2', '7z', '');