id(); $table->string('application_id'); $table->string('deployment_uuid')->unique(); $table->integer('pull_request_id')->default(0); $table->boolean('force_rebuild')->default(false); $table->string('commit')->default('HEAD'); $table->string('status')->default('queued'); $table->boolean('is_webhook')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('application_deployment_queues'); } };