Edit File: 2021_06_25_145041_create_regions_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateRegionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('regions', function (Blueprint $table) { $table->id(); $table->string('name'); $table->json('boundaries')->nullable(); $table->foreignId('country_id')->constrained()->onDelete('cascade')->onUpdate('cascade'); $table->json('center')->nullable(); $table->string('code')->nullable(); $table->integer('population')->nullable(); $table->string('citc_regionId')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('regions'); } }
Back to File Manager