Files
hr/database/migrations/2026_07_30_112804_create_shifts_table.php
2026-07-30 17:24:40 +05:00

33 lines
839 B
PHP

<?php
declare(strict_types=1);
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('shifts', function (Blueprint $table): void {
$table->id();
$table->string('name');
$table->string('code')->unique();
$table->time('starts_at')->nullable();
$table->time('ends_at')->nullable();
$table->text('description')->nullable();
$table->boolean('is_active')->default(true);
$table->timestamps();
$table->softDeletes();
$table->index('is_active');
});
}
public function down(): void
{
Schema::dropIfExists('shifts');
}
};