string('phone')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('systems', function (Blueprint $table) { $table->dropColumn('phone'); }); } }