Vote button and v2 file list topic url display (#1138)

This commit is contained in:
Cønstantine Kovalensky 2023-11-20 21:05:13 +04:00 committed by GitHub
commit 3dedb7e33d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 163 additions and 2 deletions

View file

@ -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`
-- ----------------------------