From 4c39b340fe24bef873631d2fea56f65cfbecdbd8 Mon Sep 17 00:00:00 2001 From: Samuel Georges Date: Thu, 13 Oct 2016 06:44:33 +1100 Subject: [PATCH] This should really be long text Refs #1422 --- .../system/database/migrations/2015_10_01_000016_Db_Cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'); }); }