mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-19 21:03:54 -07:00
Vote button and v2 file list topic url display (#1138)
This commit is contained in:
parent
70988814c5
commit
3dedb7e33d
8 changed files with 163 additions and 2 deletions
|
@ -1467,6 +1467,24 @@ CREATE TABLE IF NOT EXISTS `buf_last_seeder`
|
|||
-- Records of buf_last_seeder
|
||||
-- ----------------------------
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for `bb_thx`
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `bb_thx`;
|
||||
CREATE TABLE IF NOT EXISTS `bb_thx`
|
||||
(
|
||||
`topic_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`user_id` MEDIUMINT(8) NOT NULL DEFAULT '0',
|
||||
`time` INT(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`topic_id`)
|
||||
)
|
||||
ENGINE = MyISAM
|
||||
DEFAULT CHARSET = utf8;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of bb_thx
|
||||
-- ----------------------------
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for `buf_topic_view`
|
||||
-- ----------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue