id(); $table->unsignedBigInteger('site_id'); $table->unsignedBigInteger('deployment_script_id'); $table->unsignedInteger('log_id')->nullable(); $table->json('commit_data')->nullable(); $table->string('commit_id')->nullable(); $table->string('status'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('deployments'); } };