26 lines
No EOL
824 B
PHP
26 lines
No EOL
824 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
|
|
{
|
|
// Languages table
|
|
Schema::create('languages', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('short_code', 10)->unique(); // Language code (en, fr, de, en-US, zh-CN, etc.)
|
|
$table->string('name'); // English name (English, French, German, etc.)
|
|
$table->string('native_name')->nullable(); // Native name (English, Français, Deutsch, etc.)
|
|
$table->boolean('is_active')->default(true);
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('languages');
|
|
}
|
|
}; |