mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-14 02:27:34 -07:00
Increase post_text & privmsgs_text limits (#848)
This commit is contained in:
parent
256f26bc01
commit
0cb2a3f74b
2 changed files with 4 additions and 2 deletions
|
@ -987,7 +987,7 @@ DROP TABLE IF EXISTS `bb_posts_text`;
|
|||
CREATE TABLE IF NOT EXISTS `bb_posts_text`
|
||||
(
|
||||
`post_id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`post_text` TEXT NOT NULL,
|
||||
`post_text` MEDIUMTEXT NOT NULL,
|
||||
PRIMARY KEY (`post_id`)
|
||||
)
|
||||
ENGINE = MyISAM
|
||||
|
@ -1031,7 +1031,7 @@ DROP TABLE IF EXISTS `bb_privmsgs_text`;
|
|||
CREATE TABLE IF NOT EXISTS `bb_privmsgs_text`
|
||||
(
|
||||
`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`)
|
||||
)
|
||||
ENGINE = MyISAM
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue