id(); $table->string('name'); $table->string('code')->unique(); $table->time('starts_at')->nullable(); $table->time('ends_at')->nullable(); $table->text('description')->nullable(); $table->boolean('is_active')->default(true); $table->timestamps(); $table->softDeletes(); $table->index('is_active'); }); } public function down(): void { Schema::dropIfExists('shifts'); } };