From 6d38990fd3dafc4273e81e9960b1012e0f95c635 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Mon, 9 Dec 2019 23:55:49 -0600 Subject: [PATCH] mining ledger troubleshooting --- .../migrations/2019_12_09_071944_create_item_lookup_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();