관리-도구
편집 파일: 2023_11_30_044844_create_faq_translations_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; use Modules\Faq\app\Models\Faq; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('faq_translations', function (Blueprint $table) { $table->id(); $table->foreignIdFor(Faq::class); $table->string('lang_code'); $table->string('question')->nullable(); $table->text('answer')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('faq_translations'); } };