fix: user needs to be set from import job

This commit is contained in:
hackerESQ
2025-04-11 21:42:38 -05:00
parent d53e71dcd5
commit 3593697cce
2 changed files with 11 additions and 8 deletions
+5
View File
@@ -50,4 +50,9 @@ class BackupImport extends Model
'completed_at' => 'datetime',
];
}
public function user()
{
return $this->belongsTo(User::class);
}
}