id(); $table->foreignId('technique_id')->constrained(); $table->string('locale'); $table->text('title'); $table->text('short'); $table->text('description'); $table->timestamps(); $table->unique(['technique_id', 'locale']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('technique_translations'); } };