string('recipients')->nullable()->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Message::where('recipients', null)->delete(); Schema::table('messages', function ($table) { $table->string('recipients')->nullable(false)->change(); }); } }