diff --git a/database/migrations/2019_12_09_071944_create_item_lookup_table.php b/database/migrations/2019_12_09_071944_create_item_lookup_table.php index 27ab48014..1d07870c1 100644 --- a/database/migrations/2019_12_09_071944_create_item_lookup_table.php +++ b/database/migrations/2019_12_09_071944_create_item_lookup_table.php @@ -16,7 +16,7 @@ class CreateItemLookupTable extends Migration if(!Schema::hasTable('item_lookup')) { Schema::create('item_lookup', function (Blueprint $table) { $table->double('capacity', 20, 2)->nullable(); - $table->string('description'); + $table->text('description'); $table->unsignedBigInteger('graphic_id')->nullable(); $table->unsignedBigInteger('group_id'); $table->unsignedBigInteger('icon_id')->nullable();