<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateDraftsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('drafts', function (Blueprint $table) { $table->id(); $table->unsignedInteger('customer_id'); $table->longText('emails')->nullable()->comment('array of contact emails'); $table->text('body')->nullable(); $table->dateTime('schedule_datetime')->nullable(); $table->string('from_name')->nullable(); $table->string('reply_to')->nullable(); $table->string('subject')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('drafts'); } }