diff --git a/database/migrations/2019_08_04_072959_wormholes_space_table.php b/database/migrations/2019_08_04_072959_wormholes_space_table.php index bfd17e054..d13b8750e 100644 --- a/database/migrations/2019_08_04_072959_wormholes_space_table.php +++ b/database/migrations/2019_08_04_072959_wormholes_space_table.php @@ -50,9 +50,9 @@ class WormholesSpaceTable extends Migration ]); $table->text('details')->nullable(); $table->string('link')->nullable(); - $table->unsignedInteger('mass_allowed'); - $table->unsignedInteger('individual_mass'); - $table->unsignedInteger('regeneration'); + $table->unsignedBigInteger('mass_allowed'); + $table->unsignedBigInteger('individual_mass'); + $table->unsignedBigInteger('regeneration'); $table->enum('stable_time', [ '>24 hours', '>4 hours <24 hours', @@ -67,10 +67,10 @@ class WormholesSpaceTable extends Migration $table->increments('id'); $table->string('type'); $table->string('leads_to'); - $table->unsignedInteger('mass_allowed'); - $table->unsignedInteger('individual_mass'); - $table->unsignedInteger('regeneration'); - $table->unsignedInteger('max_stable_time'); + $table->unsignedBigInteger('mass_allowed'); + $table->unsignedBigInteger('individual_mass'); + $table->unsignedBigInteger('regeneration'); + $table->unsignedBigInteger('max_stable_time'); }); }