diff --git a/modules/system/database/migrations/2015_10_01_000016_Db_Cache.php b/modules/system/database/migrations/2015_10_01_000016_Db_Cache.php index 6918cd03e..145f20fc8 100644 --- a/modules/system/database/migrations/2015_10_01_000016_Db_Cache.php +++ b/modules/system/database/migrations/2015_10_01_000016_Db_Cache.php @@ -9,7 +9,7 @@ class DbCache extends Migration { Schema::create('cache', function (Blueprint $table) { $table->string('key')->unique(); - $table->text('value'); + $table->longText('value'); $table->integer('expiration'); }); }