<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateContactsCustomFieldTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('contacts_custom_field', function (Blueprint $table) { $table->id(); $table->uuid('uid'); $table->unsignedBigInteger('contact_id'); $table->string('name'); $table->string('tag'); $table->string('type')->default('text'); $table->boolean('required')->default(false); $table->string('value')->nullable(); $table->timestamps(); //foreign $table->foreign('contact_id')->references('id')->on('contacts')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contacts_custom_field'); } }