text('login_note')->nullable()->default(null); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('settings', function (Blueprint $table) { $table->dropColumn('login_note'); }); } }