mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-14 02:27:34 -07:00
Minor improvements (#1530)
* Minor improvements * Update changes.txt * Update attach_maintenance.php * Update CHANGELOG.md
This commit is contained in:
parent
04ed0202c6
commit
137865f3f3
4 changed files with 99 additions and 5 deletions
|
@ -284,7 +284,7 @@ CREATE TABLE IF NOT EXISTS `bb_bt_torrents`
|
|||
`tor_type` TINYINT(1) NOT NULL DEFAULT '0',
|
||||
`speed_up` INT(11) NOT NULL DEFAULT '0',
|
||||
`speed_down` INT(11) NOT NULL DEFAULT '0',
|
||||
`last_seeder_id` INT(11) NOT NULL DEFAULT '0',
|
||||
`last_seeder_id` MEDIUMINT(8) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`topic_id`),
|
||||
UNIQUE KEY `post_id` (`post_id`),
|
||||
UNIQUE KEY `topic_id` (`topic_id`),
|
||||
|
@ -875,7 +875,7 @@ DROP TABLE IF EXISTS `bb_poll_users`;
|
|||
CREATE TABLE IF NOT EXISTS `bb_poll_users`
|
||||
(
|
||||
`topic_id` INT(10) UNSIGNED NOT NULL,
|
||||
`user_id` INT(11) NOT NULL,
|
||||
`user_id` MEDIUMINT(8) NOT NULL,
|
||||
`vote_ip` VARCHAR(42) NOT NULL DEFAULT '0',
|
||||
`vote_dt` INT(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`topic_id`, `user_id`)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue