36 lines
909 B
PHP
36 lines
909 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Support\Facades\Schema;
|
||
|
use Illuminate\Database\Schema\Blueprint;
|
||
|
use Illuminate\Database\Migrations\Migration;
|
||
|
|
||
|
class CreateCommunesTable extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* Run the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function up()
|
||
|
{
|
||
|
Schema::create('communes', function (Blueprint $table) {
|
||
|
$table->increments('id');
|
||
|
$table->integer('province_id')->unsigned();
|
||
|
$table->foreign('province_id')->references('id')->on('provinces')->onDelete('cascade');
|
||
|
$table->integer('district_id')->unsigned();
|
||
|
$table->foreign('district_id')->references('id')->on('districts')->onDelete('cascade');
|
||
|
$table->string('name');
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Reverse the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function down()
|
||
|
{
|
||
|
Schema::dropIfExists('communes');
|
||
|
}
|
||
|
}
|