47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateMoonsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('moons', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->string('Region');
|
|
$table->string('System');
|
|
$table->string('Planet');
|
|
$table->string('Moon');
|
|
$table->string('StructureName')->default('No Name');
|
|
$table->string('FirstOre')->default('None');
|
|
$table->integer('FirstQuantity')->default('0');
|
|
$table->string('SecondOre')->default('None');
|
|
$table->integer('SecondQuantity')->default('0');
|
|
$table->string('ThirdOre')->default('None');
|
|
$table->integer('ThirdQuantity')->default('0');
|
|
$table->string('FourthOre')->default('None');
|
|
$table->integer('FourthQuantity')->default('0');
|
|
$table->string('RentalCorp')->default('0');
|
|
$table->integer('RentalEnd')->default('0');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('moons');
|
|
}
|
|
}
|