mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 16:22:16 +01:00
46 lines
1.2 KiB
PHP
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');
|
|
}
|
|
};
|