diff options
author | Friendika <info@friendika.com> | 2010-11-07 03:16:58 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-07 03:16:58 -0800 |
commit | ce2f8c939da00f412eff0172c0e4ed4113dac34d (patch) | |
tree | 7defc9b7e583f097d8b36be189972b13bdc37a72 | |
parent | a3ddbb5d7c95f36724343a450418b388fff9454d (diff) | |
download | volse-hubzilla-ce2f8c939da00f412eff0172c0e4ed4113dac34d.tar.gz volse-hubzilla-ce2f8c939da00f412eff0172c0e4ed4113dac34d.tar.bz2 volse-hubzilla-ce2f8c939da00f412eff0172c0e4ed4113dac34d.zip |
remove 65535 char post limit
-rw-r--r-- | boot.php | 2 | ||||
-rw-r--r-- | database.sql | 2 | ||||
-rw-r--r-- | update.php | 4 |
3 files changed, 6 insertions, 2 deletions
@@ -2,7 +2,7 @@ set_time_limit(0); -define ( 'BUILD_ID', 1015 ); +define ( 'BUILD_ID', 1016 ); define ( 'DFRN_PROTOCOL_VERSION', '2.0' ); define ( 'EOL', "<br />\r\n" ); diff --git a/database.sql b/database.sql index 8f068e59d..ced7573f3 100644 --- a/database.sql +++ b/database.sql @@ -171,7 +171,7 @@ CREATE TABLE IF NOT EXISTS `item` ( `author-link` char(255) NOT NULL, `author-avatar` char(255) NOT NULL, `title` char(255) NOT NULL, - `body` text NOT NULL, + `body` mediumtext NOT NULL, `verb` char(255) NOT NULL, `object-type` char(255) NOT NULL, `object` text NOT NULL, diff --git a/update.php b/update.php index dfa54af59..eb3231b56 100644 --- a/update.php +++ b/update.php @@ -129,4 +129,8 @@ function update_1014() { intval($rr['id'])); } } +} + +function update_1015() { + q("ALTER TABLE `item` CHANGE `body` `body` mediumtext NOT NULL"); }
\ No newline at end of file |