todo/database/migrations/2024_04_27_121447_create_ta...

28 lines
790 B
PHP
Raw Normal View History

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('project_id')->constrained('projects');
2024-04-27 15:04:24 +03:00
$table->foreignId('status_id')->constrained('task_statuses');
$table->foreignId('created_by_id')->constrained('users');
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('tasks');
}
};