id(); $table->foreignId('instance_id')->constrained('instances')->cascadeOnDelete(); $table->string('external_job_id'); $table->string('schedule'); $table->timestamp('last_ok_at')->nullable(); $table->string('status')->default('scheduled'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('backups'); } };