adrema/database/migrations/2017_07_05_000810_create_re...

34 lines
686 B
PHP
Raw Normal View History

2020-04-10 20:32:12 +02:00
<?php
use Illuminate\Support\Facades\Schema;
2020-04-12 00:26:44 +02:00
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
2020-04-10 20:32:12 +02:00
2020-04-12 00:26:44 +02:00
class CreateRegionsTable extends Migration
2020-04-10 20:32:12 +02:00
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
2020-04-12 00:26:44 +02:00
Schema::create('regions', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->boolean('is_null');
$table->integer('nami_id')->nullable();
2020-04-10 20:32:12 +02:00
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
2020-04-12 00:26:44 +02:00
Schema::dropIfExists('regions');
2020-04-10 20:32:12 +02:00
}
}