id(); $table->foreignIdFor(Application::class); $table->foreignIdFor(Server::class); $table->string('branch'); $table->string('status'); $table->json('config')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('instances'); } };