]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Event/classes/RSVP.php
Upgrading from 1.1.x would make uri fields have length=255
[quix0rs-gnu-social.git] / plugins / Event / classes / RSVP.php
index 84cbd624dc428f0c854c439a25f002605f87d74c..f2ab8f0aa3e81845aef66bd885daeb8a74739f4b 100644 (file)
@@ -107,6 +107,7 @@ class RSVP extends Managed_DataObject
         echo "\nFound old $table table, upgrading it to add 'event_uri' field...";
 
         $schemadef['fields']['event_uri'] = array('type' => 'varchar', 'length' => 191, 'not null' => true, 'description' => 'Event URI');
+        $schemadef['fields']['uri']['length'] = 191;    // we likely don't have to discover too long keys here
         $schema->ensureTable($table, $schemadef);
 
         $rsvp = new RSVP();