Refactor + package updates + improve local backups
This commit is contained in:
15
app/Models/ScheduledDatabaseBackupExecution.php
Normal file
15
app/Models/ScheduledDatabaseBackupExecution.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
class ScheduledDatabaseBackupExecution extends BaseModel
|
||||
{
|
||||
protected $guarded = [];
|
||||
|
||||
public function scheduledDatabaseBackup(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(ScheduledDatabaseBackup::class);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user