29 lines
849 B
PHP
29 lines
849 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('tasks', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('name', 255);
|
|
$table->bigInteger('parent_id');
|
|
$table->text('description')->nullable();
|
|
$table->string('file', 255)->nullable();
|
|
$table->foreignId('status_id')->constrained('task_statuses');
|
|
$table->foreignId('department_id')->constrained('departments');
|
|
$table->foreignId('created_by_id')->constrained('users');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('tasks');
|
|
}
|
|
};
|