id(); $table->string('translationable_type'); $table->unsignedBigInteger('translationable_id')->index(); $table->string('locale')->index(); $table->string('key')->nullable(); $table->text('value')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('translations'); } }