id(); $table->foreignId('technique_id')->constrained(); $table->string('map'); $table->double('x'); $table->double('y'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('technique_maps'); } };