]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
RSSCloud URL field too long for utf8mb4
authorMikael Nordfeldth <mmn@hethane.se>
Sat, 21 Feb 2015 15:43:21 +0000 (16:43 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Sat, 21 Feb 2015 15:43:21 +0000 (16:43 +0100)
Should be the last one. If any URLs are longer than 191 chars, it might
require more manual interaction. Any instance with problems running
scripts/upgrade.php will get special treatment, help and a lollipop.

plugins/RSSCloud/RSSCloudPlugin.php

index 823094f269eace621d530cf66a4ca0e80f4ff46f..55f73783fa4785bf4d2ee8ce8201712000bca83f 100644 (file)
@@ -175,7 +175,7 @@ class RSSCloudPlugin extends Plugin
             array(
                 'fields' => array(
                     'subscribed' => array('type' => 'int', 'not null' => true),
-                    'url' => array('type' => 'varchar', 'length' => '255', 'not null' => true),
+                    'url' => array('type' => 'varchar', 'length' => '191', 'not null' => true),
                     'failures' => array('type' => 'int', 'not null' => true, 'default' => 0),
                     'created' => array('type' => 'datetime', 'not null' => true),
                     'modified' => array('type' => 'timestamp', 'not null' => true),