We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbef83c commit c3d55b0Copy full SHA for c3d55b0
database/migrations/2022_11_25_045551_create_shifts_table.php
@@ -19,7 +19,7 @@ public function up()
19
$table->foreignId('rota_id')->constrained()->cascadeOnDelete();
20
$table->foreignId('driver_id')->constrained()->cascadeOnDelete();
21
$table->foreignId('van_id')->constrained()->cascadeOnDelete();
22
- $table->timestamp('start_time');
+ $table->timestamp('start_time')->nullable();
23
$table->timestamp('end_time')->nullable();
24
$table->string('description');
25
$table->timestamp('clock_in_time')->nullable();
0 commit comments