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