35 lines
998 B
PHP
35 lines
998 B
PHP
<?php
|
|
|
|
use App\Enums\IsActive;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::create('departments', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('name', 100)->index();
|
|
$table->string('alias', 20)->index();
|
|
$table->enum('is_active', IsActive::values())->default(IsActive::ACTIVE->value)->comment(IsActive::comment())->index();
|
|
$table->integer('sort_order')->default(0)->index();
|
|
$table->timestamp('created_at')->useCurrent();
|
|
$table->timestamp('updated_at')->nullable()->useCurrentOnUpdate();
|
|
$table->softDeletes();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('departments');
|
|
}
|
|
};
|