mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-02-28 15:10:54 +03:00
Increase post_text & privmsgs_text limits (#213)
* Increase post_text & privmsgs_text limits * Update CHANGELOG.md
This commit is contained in:
parent
798faf8d67
commit
e1383299d4
@ -8,6 +8,7 @@
|
|||||||
- Release v2.1.5-2023.07 🎉
|
- Release v2.1.5-2023.07 🎉
|
||||||
- Fix RFC 1918 RegExp [\#210](https://github.com/torrentpier/torrentpier-lts/pull/210) ([belomaxorka](https://github.com/belomaxorka))
|
- Fix RFC 1918 RegExp [\#210](https://github.com/torrentpier/torrentpier-lts/pull/210) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Maked max smilies in PM configurable [\#211](https://github.com/torrentpier/torrentpier-lts/pull/211) ([belomaxorka](https://github.com/belomaxorka))
|
- Maked max smilies in PM configurable [\#211](https://github.com/torrentpier/torrentpier-lts/pull/211) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
|
- Increase post_text & privmsgs_text limits [\#213](https://github.com/torrentpier/torrentpier-lts/pull/213) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Minor improvements [\#212](https://github.com/torrentpier/torrentpier-lts/pull/212) ([belomaxorka](https://github.com/belomaxorka))
|
- Minor improvements [\#212](https://github.com/torrentpier/torrentpier-lts/pull/212) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
|
|
||||||
## [v2.1.5-2023.06](https://github.com/torrentpier/torrentpier-lts/tree/v2.1.5-2023.06) (2023-07-04)
|
## [v2.1.5-2023.06](https://github.com/torrentpier/torrentpier-lts/tree/v2.1.5-2023.06) (2023-07-04)
|
||||||
|
@ -867,7 +867,7 @@ CREATE TABLE IF NOT EXISTS `bb_posts_search` (
|
|||||||
DROP TABLE IF EXISTS `bb_posts_text`;
|
DROP TABLE IF EXISTS `bb_posts_text`;
|
||||||
CREATE TABLE IF NOT EXISTS `bb_posts_text` (
|
CREATE TABLE IF NOT EXISTS `bb_posts_text` (
|
||||||
`post_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
`post_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||||
`post_text` text NOT NULL,
|
`post_text` mediumtext NOT NULL,
|
||||||
PRIMARY KEY (`post_id`)
|
PRIMARY KEY (`post_id`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
@ -903,7 +903,7 @@ CREATE TABLE IF NOT EXISTS `bb_privmsgs` (
|
|||||||
DROP TABLE IF EXISTS `bb_privmsgs_text`;
|
DROP TABLE IF EXISTS `bb_privmsgs_text`;
|
||||||
CREATE TABLE IF NOT EXISTS `bb_privmsgs_text` (
|
CREATE TABLE IF NOT EXISTS `bb_privmsgs_text` (
|
||||||
`privmsgs_text_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
`privmsgs_text_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||||
`privmsgs_text` text NOT NULL,
|
`privmsgs_text` mediumtext NOT NULL,
|
||||||
PRIMARY KEY (`privmsgs_text_id`)
|
PRIMARY KEY (`privmsgs_text_id`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
@ -97,3 +97,5 @@ INSERT INTO `bb_cron` VALUES ('999', '1', 'PM cleanup', 'clean_pm.php', 'daily',
|
|||||||
// 2.1.5 (LTS 2023.07)
|
// 2.1.5 (LTS 2023.07)
|
||||||
DELETE FROM `bb_smilies` WHERE `code` = ':ad:';
|
DELETE FROM `bb_smilies` WHERE `code` = ':ad:';
|
||||||
INSERT INTO `bb_smilies` (`code`, `smile_url`, `emoticon`) VALUES (':cd:', 'cd.gif', 'cd');
|
INSERT INTO `bb_smilies` (`code`, `smile_url`, `emoticon`) VALUES (':cd:', 'cd.gif', 'cd');
|
||||||
|
ALTER TABLE `bb_posts_text` CHANGE `post_text` `post_text` MEDIUMTEXT NOT NULL;
|
||||||
|
ALTER TABLE `bb_privmsgs_text` CHANGE `privmsgs_text` `privmsgs_text` MEDIUMTEXT NOT NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user