feat: add all database migrations

This commit is contained in:
2026-04-03 04:02:11 +07:00
parent b7b5019827
commit c9efe30584
14 changed files with 349 additions and 0 deletions
@@ -0,0 +1,31 @@
<?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('activities', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->text('description')->nullable();
$table->date('start_date');
$table->date('end_date');
$table->foreignId('created_by')->constrained('users');
$table->enum('status', ['draft', 'pending', 'approved', 'rejected'])->default('draft');
$table->foreignId('approved_by')->nullable()->constrained('users');
$table->timestamp('approved_at')->nullable();
$table->timestamp('executed_at')->nullable();
$table->text('execution_notes')->nullable();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('activities');
}
};