<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class ModifyTableMessages extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('messages', function (Blueprint $table) { $table->text('body')->nullable()->change(); $table->unsignedInteger('template_id')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('messages', function (Blueprint $table) { $table->text('body')->nullable(false)->change(); $table->dropColumn('template_id'); }); } }