id(); $table->string('group', 50)->comment('分組 (product, category, system)'); $table->string('key', 100)->comment('字典鍵值'); $table->string('locale', 10)->comment('語系代碼'); $table->text('value')->comment('翻譯內容'); $table->timestamps(); $table->unique(['group', 'key', 'locale']); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('translations'); } };