Index: docroot/modules/contrib/search_api/search_api.install
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- docroot/modules/contrib/search_api/search_api.install	(date 1471373874000)
+++ docroot/modules/contrib/search_api/search_api.install	(revision )
@@ -9,6 +9,22 @@
 use Drupal\Core\Link;
 use Drupal\search_api\Entity\Server;
 use Drupal\Core\Url;
+use Drupal\Core\Database\Database;
+
+/**
+ * Updates to update schema
+ */
+function search_api_install() {
+  search_api_update_8100();
+}
+
+/**
+ * Update Schema
+ */
+function search_api_update_8100() {
+  $schema = Database::getConnection()->query("ALTER TABLE `search_api_task` 
+CHANGE COLUMN `server_id` `server_id` VARCHAR(50) NULL COMMENT 'The ID of the server for which this task should be executed' ;");
+}
 
 /**
  * Implements hook_schema().
