diff --git a/database/migrations/2019_10_13_025833_create_station_lookup_table.php b/database/migrations/2019_10_13_025833_create_station_lookup_table.php index 9bc125a..4ab6c2a 100644 --- a/database/migrations/2019_10_13_025833_create_station_lookup_table.php +++ b/database/migrations/2019_10_13_025833_create_station_lookup_table.php @@ -26,7 +26,7 @@ class CreateStationLookupTable extends Migration $table->unsignedBigInteger('race_id')->nullable(); $table->decimal('reprocessing_efficiency'); $table->decimal('reprocessing_stations_take'); - $table->string('services'); + $table->text('services'); $table->unsignedBigInteger('station_id'); $table->unsignedBigInteger('system_id'); $table->unsignedBigInteger('type_id');