id(); $table->foreignIdFor(Application::class); $table->string('name'); $table->string('branch'); $table->string('url'); $table->string('status'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('environments'); } };