mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 08:58:35 +00:00
fix: prevent throwing error when document is missing ID
This commit is contained in:
parent
cffa50f272
commit
3c4476f689
1 changed files with 2 additions and 1 deletions
|
|
@ -87,7 +87,8 @@ abstract class Migration
|
|||
$new = call_user_func($callback, $document);
|
||||
|
||||
if (empty($new->getId())) {
|
||||
throw new Exception('Missing ID');
|
||||
Console::warning('Skipped Document due to missing ID.');
|
||||
return;
|
||||
}
|
||||
|
||||
if (!$this->check_diff_multi($new->getArrayCopy(), $old)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue