X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FEmailReminder%2Fclasses%2FEmail_reminder.php;h=7af2cdf5e6ac776f49d43b37e225d80d83798c98;hb=2f86cd860231f92213950d439e9a109b7a5f11c4;hp=235305f04722a3c26587edfa9a2287012879b9dc;hpb=f5bb0431da4d3e62d1ddf76da9651e57f2f5c6dd;p=quix0rs-gnu-social.git diff --git a/plugins/EmailReminder/classes/Email_reminder.php b/plugins/EmailReminder/classes/Email_reminder.php index 235305f047..7af2cdf5e6 100644 --- a/plugins/EmailReminder/classes/Email_reminder.php +++ b/plugins/EmailReminder/classes/Email_reminder.php @@ -30,8 +30,8 @@ class Email_reminder extends Managed_DataObject { public $__table = 'email_reminder'; - public $type; // type of reminder - public $code; // confirmation code + public $type; // type of reminder varchar(191) not 255 because utf8mb4 takes more space + public $code; // confirmation code varchar(191) not 255 because utf8mb4 takes more space public $days; // number of days after code was created public $sent; // timestamp public $created; // timestamp @@ -102,14 +102,14 @@ class Email_reminder extends Managed_DataObject 'fields' => array( 'type' => array( 'type' => 'varchar', - 'length' => 255, + 'length' => 191, 'not null' => true, 'description' => 'type of reminder' ), 'code' => array( 'type' => 'varchar', 'not null' => 'true', - 'length' => 255, + 'length' => 191, 'description' => 'confirmation code' ), 'days' => array(