mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-14 18:48:21 -07:00
Newtopic: Added configuring robots indexing (#1599)
* Added ability configure robots indexing while creating new topic * Update viewtopic.php * Update mysql.sql * Update posting.php * Update Post.php * Update CHANGELOG.md * Update posting.php * Update posting.php * Update Post.php * Update posting.tpl * Update posting.php
This commit is contained in:
parent
7e43a6d002
commit
607141e51d
7 changed files with 34 additions and 10 deletions
|
@ -1254,6 +1254,7 @@ CREATE TABLE IF NOT EXISTS `bb_topics`
|
|||
`topic_dl_type` TINYINT(1) NOT NULL DEFAULT '0',
|
||||
`topic_last_post_time` INT(11) NOT NULL DEFAULT '0',
|
||||
`topic_show_first_post` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`topic_allow_robots` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`topic_id`),
|
||||
KEY `forum_id` (`forum_id`),
|
||||
KEY `topic_last_post_id` (`topic_last_post_id`),
|
||||
|
@ -1270,7 +1271,7 @@ INSERT INTO `bb_topics`
|
|||
VALUES ('1', '1', 'Welcome to TorrentPier Cattle', '2', UNIX_TIMESTAMP(), '0', '0', '0', '0', '0', '1', '1',
|
||||
'0',
|
||||
'0',
|
||||
'0', UNIX_TIMESTAMP(), '0');
|
||||
'0', UNIX_TIMESTAMP(), '0', '1');
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for `bb_topics_watch`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue