Added tag endpoints

This commit is contained in:
Constantin Graf
2024-02-27 22:12:48 +01:00
parent 524dc0727d
commit a86e72f655
19 changed files with 824 additions and 138 deletions

View File

@@ -23,6 +23,8 @@ return new class extends Migration
->cascadeOnUpdate()
->restrictOnDelete();
$table->timestamps();
$table->index('created_at');
});
}

View File

@@ -45,6 +45,10 @@ return new class extends Migration
->restrictOnDelete();
$table->jsonb('tags')->nullable();
$table->timestamps();
$table->index('start');
$table->index('end');
$table->index('billable');
});
}