database/migrations/create_category_translations_table.php.stub
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCategoryTranslationsTable extends Migration
{
public function up()
{
Schema::create('category_translations', function (Blueprint $table) {
$table->increments('id');
$table->integer('category_id')->unsigned();
$table->string('name');
$table->text('description')->nullable();
$table->string('slug');
$table->string('locale')->index();
$table->unique(['category_id', 'locale']);
$table->foreign('category_id')->references('id')->on('categories')->onDelete('cascade');
});
}
public function down()
{
Schema::dropIfExists('category_translations');
}
}