todo/database/migrations/2024_04_27_121447_create_ta...

35 lines
957 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
{
/**
* Run the migrations.
*/
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-04-27 15:04:24 +03:00
$table->text('description')->nullable();
2024-04-27 16:32:03 +03:00
$table->string('url', 255)->nullable();
2024-04-27 15:04:24 +03:00
$table->foreignId('status_id')->constrained('task_statuses');
$table->foreignId('created_by_id')->constrained('users');
$table->bigInteger('assigned_to_id')->nullable();
$table->foreign('assigned_to_id')->references('id')->on('users');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('tasks');
}
};