From 742189907c4b13326363eedddb16714e5acf0b23 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sun, 8 Sep 2019 05:00:37 -0500 Subject: [PATCH] wormholes --- .../2019_08_04_072959_wormholes_space_table.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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'); }); }