<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateFileTranslationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('file_translations', function (Blueprint $table) { $table->engine = "InnoDB"; $table->bigIncrements('id'); $table->unsignedInteger('file_id'); $table->string('locale', 191)->index(); $table->string('title'); $table->text('description')->nullable(); $table->foreign('file_id')->on('files')->references('id')->onDelete('cascade'); }); Schema::table('files', function (Blueprint $table) { $table->dropColumn('title'); $table->dropColumn('description'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('file_translations'); } }