id(); $table->foreignId('nest_id')->references('id')->on('nests'); $table->string('name'); $table->string('description'); $table->string('docker_image'); $table->text('startup'); $table->json('environment'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('eggs'); } };