Added billable rates; Added project members; Added visibility to projects

This commit is contained in:
Constantin Graf
2024-03-28 18:50:04 +01:00
parent bb42b0940a
commit ba0212ea01
71 changed files with 3236 additions and 174 deletions

View File

@@ -17,6 +17,8 @@ return new class extends Migration
$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')