Files
solidtime/database/migrations/2024_01_20_110439_create_projects_table.php
2024-09-30 14:19:47 +02:00

46 lines
1.2 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('projects', function (Blueprint $table): void {
$table->uuid('id')->primary();
$table->string('name', 255);
$table->string('color', 16);
$table->integer('billable_rate')->unsigned()->nullable();
$table->boolean('is_public')->default(false);
$table->uuid('client_id')->nullable();
$table->foreign('client_id')
->references('id')
->on('clients')
->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('projects');
}
};