Files
solidtime/database/migrations/2024_01_20_110444_create_tasks_table.php
2024-03-12 17:46:27 +01:00

43 lines
1.0 KiB
PHP

<?php
declare(strict_types=1);
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->uuid('id')->primary();
$table->string('name', 500);
$table->uuid('project_id');
$table->foreign('project_id')
->references('id')
->on('projects')
->cascadeOnUpdate()
->restrictOnDelete();
$table->uuid('organization_id');
$table->foreign('organization_id')
->references('id')
->on('organizations')
->cascadeOnUpdate()
->restrictOnDelete();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('tasks');
}
};