<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateTemplatesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('templates', function (Blueprint $table) { $table->increments('id'); $table->unsignedInteger('customer_id'); $table->string('title'); $table->enum('status', ['active','inactive']); $table->longText('body')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('templates'); } }