1
0
forked from s421507/eOSP2
eOSP2/database/migrations/2020_08_02_163410_create_districts_table.php
Krzysztof Strzelecki d7603c07fd Merge branch 'master' of https://git.wmi.amu.edu.pl/s421507/eOSP2
# Conflicts:
#	.idea/workspace.xml

Signed-off-by: Krzysztof Strzelecki <ks37365@st.amu.edu.pl>
2020-08-17 11:44:34 +02:00

34 lines
756 B
PHP

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