getTable('calendarobjects'); $column = $table->getColumn('uid'); if ($column->getLength() < 512) { $column->setLength(512); $modified = true; } $table = $schema->getTable('calendar_reminders'); $column = $table->getColumn('uid'); if ($column->getLength() < 512) { $column->setLength(512); $modified = true; } $table = $schema->getTable('calendar_invitations'); $column = $table->getColumn('uid'); if ($column->getLength() < 512) { $column->setLength(512); $modified = true; } return $modified ? $schema : null; } }