Files
HRM-System/database/migrations/2025_07_23_054614_create_branches_table.php
2026-04-13 08:16:56 +08:00

34 lines
995 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('branches', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->text('address')->nullable();
$table->string('city')->nullable();
$table->string('state')->nullable();
$table->string('country')->nullable();
$table->string('zip_code')->nullable();
$table->string('phone')->nullable();
$table->string('email')->nullable();
$table->enum('status', ['active', 'inactive'])->default('active');
$table->foreignId('created_by')->constrained('users')->onDelete('cascade');
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('branches');
}
};