]> git.mxchange.org Git - friendica.git/commitdiff
remove 65535 char post limit
authorFriendika <info@friendika.com>
Sun, 7 Nov 2010 11:16:58 +0000 (03:16 -0800)
committerFriendika <info@friendika.com>
Sun, 7 Nov 2010 11:16:58 +0000 (03:16 -0800)
boot.php
database.sql
update.php

index cdca1c11e4f3d530fdac2d327d43167a00ca0aa8..925585d44acc6f23f87f0689d9cf4a474124a5b3 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -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"     );
index 8f068e59d91d40bdf66b95e0ea72692959f254fd..ced7573f3bd41d7b1f41f0a40fb838a899f9cad0 100644 (file)
@@ -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,
index dfa54af593cdbc1b0998df8605f4fb648276004e..eb3231b5693c04c31ba8a3d1f01805b141b53dc7 100644 (file)
@@ -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