This should really be long text

Refs #1422
This commit is contained in:
Samuel Georges 2016-10-13 06:44:33 +11:00
parent 991f7fc3b8
commit 4c39b340fe
1 changed files with 1 additions and 1 deletions

View File

@ -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');
});
}