Change size of cache content to longtext

This commit is contained in:
Daniel_I_Am 2020-08-29 15:47:56 +02:00
parent 2de6bc30fa
commit 1b15b69736
No known key found for this signature in database
GPG Key ID: 80C428FCC9743E84

View File

@ -19,7 +19,7 @@ class CreateLodestoneCachesTable extends Migration
$table->string('server', 64);
$table->string('name', 255);
$table->bigInteger('lodestoneId')->unsigned();
$table->text('content');
$table->longText('content');
$table->timestamps();
$table->unique(['type', 'lodestoneId']);