From 8a8b5cef7a2c175fc4503b9c730430026a414a43 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sun, 8 Sep 2019 04:55:05 -0500 Subject: [PATCH] wormhole database migration --- .../migrations/2019_08_04_072959_wormholes_space_table.php | 6 +++--- 1 file changed, 3 insertions(+), 3 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 bfb81a609..84bb7190f 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->unsignedDecimal('mass_allowed', 12, 2); - $table->unsignedDecimal('individual_mass', 12, 2); - $table->unsignedDecimal('regeneration', 12, 2); + $table->unsignedInteger('mass_allowed', 12); + $table->unsignedInteger('individual_mass', 12); + $table->unsignedInteger('regeneration', 12); $table->enum('stable_time', [ '>24 hours', '>4 hours <24 hours',