2024-04-27 15:04:24 +03:00
|
|
|
<?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('tasks', function (Blueprint $table) {
|
|
|
|
$table->id();
|
2024-04-27 16:32:03 +03:00
|
|
|
$table->string('name', 255);
|
2024-05-02 16:54:51 +03:00
|
|
|
$table->bigInteger('parent_id');
|
2024-04-27 15:04:24 +03:00
|
|
|
$table->text('description')->nullable();
|
|
|
|
$table->foreignId('status_id')->constrained('task_statuses');
|
2024-05-02 16:54:51 +03:00
|
|
|
$table->foreignId('department_id')->constrained('departments');
|
2024-04-27 15:04:24 +03:00
|
|
|
$table->foreignId('created_by_id')->constrained('users');
|
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function down(): void
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('tasks');
|
|
|
|
}
|
|
|
|
};
|