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