26 lines
793 B
PHP
26 lines
793 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('languages', function (Blueprint $table) {
|
||
|
|
$table->id();
|
||
|
|
$table->string('short_code', 2)->unique(); // ISO 639-1 language code (en, fr, de, 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');
|
||
|
|
}
|
||
|
|
};
|