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

@@ -18,7 +18,6 @@ use Illuminate\Database\Eloquent\Relations\HasMany;
'end_time',
'fixed_starts_at',
'fixed_expires_at',
'active',
])]
class ValidityTime extends Model
{
@@ -30,7 +29,6 @@ class ValidityTime extends Model
'type' => ValidityTimeType::class,
'fixed_starts_at' => 'datetime',
'fixed_expires_at' => 'datetime',
'active' => 'boolean',
];
}