30 lines
879 B
PHP
30 lines
879 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
public function up(): void
|
|
{
|
|
Schema::create('translations', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('locale', 5);
|
|
$table->string('namespace', 32)->default('*');
|
|
$table->string('group', 64);
|
|
$table->string('key', 255);
|
|
$table->text('value');
|
|
$table->foreignId('updated_by')->nullable()->constrained('users')->nullOnDelete();
|
|
$table->timestamps();
|
|
$table->unique(['locale', 'namespace', 'group', 'key']);
|
|
$table->index(['locale', 'group']);
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('translations');
|
|
}
|
|
};
|