id(); $table->timestamps(); $table->integer('site_id')->unsigned(); $table->string('name_short',128); $table->text('name_detail')->nullable(); $table->text('description')->nullable(); $table->integer('language_id')->unsigned(); $table->foreign(['language_id'])->references(['id'])->on('languages'); $table->integer('product_id')->unsigned(); $table->foreign(['product_id','site_id'])->references(['id','site_id'])->on('products'); $table->unique(['product_id','language_id','site_id']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('product_translate'); } };