text('logs')->default(null)->nullable(); $table->string('current_process_id')->default(null)->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('application_deployment_queues', function (Blueprint $table) { $table->dropColumn('logs'); $table->dropColumn('current_process_id'); }); } };