import moons

This commit is contained in:
2021-05-30 19:03:09 +09:00
parent 120bb5edc9
commit 5a6a1a19c4
2 changed files with 18 additions and 1 deletions

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')->nullable();
$table->string('moon_name');
$table->unsignedBigInteger('ore_type_id');
$table->string('ore_name');
$table->float('quantity');