import moons

This commit is contained in:
2021-05-30 18:57:38 +09:00
parent d14bbc1d22
commit 120bb5edc9

View File

@@ -46,7 +46,7 @@ class CreateNewMoonRentalTables extends Migration
Schema::create('alliance_moon_ores', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('moon_id');
$table->string('moon_name')->default('Not Assigned');
$table->string('moon_name')->nullable();
$table->unsignedBigInteger('ore_type_id');
$table->string('ore_name');
$table->float('quantity');