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