Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelpetscentercampinas.meumercado.app
/
database
/
migrations
/
Editing: 2021_05_27_103505_create_product_translations_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateProductTranslationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('translations', function (Blueprint $table) { $table->id(); $table->string('translationable_type'); $table->unsignedBigInteger('translationable_id')->index(); $table->string('locale')->index(); $table->string('key')->nullable(); $table->text('value')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('translations'); } }
Save
Cancel