<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateContact extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('contacts', function (Blueprint $table) { $table->id(); $table->timestamps(); $table->string('contactname', 255); $table->string('title', 255); $table->string('email', 255); $table->integer('phone'); //$table->unique('email'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contact'); } }