refactor(validity-time): remove 'active' field from ValidityTime model and related migrations/tests

This commit is contained in:
2026-08-06 16:09:11 -03:00
parent b224dd8650
commit 7561ba756c
5 changed files with 0 additions and 7 deletions

View File

@@ -15,7 +15,6 @@ return new class extends Migration
$table->time('end_time')->nullable();
$table->dateTime('fixed_starts_at')->nullable();
$table->dateTime('fixed_expires_at')->nullable();
$table->boolean('active')->default(true);
$table->timestamps();
});
}

View File

@@ -70,7 +70,6 @@ return new class extends Migration
'end_time' => null,
'fixed_starts_at' => $startsAt,
'fixed_expires_at' => $expiresAt,
'active' => true,
'created_at' => now(),
'updated_at' => now(),
]);