Added a little protection to migration query
Just to be sure the query is filtered as expected to only affect shelf-based images.
This commit is contained in:
parent
e4642257a6
commit
d0dc5e5c5d
1 changed files with 6 additions and 4 deletions
|
@ -22,10 +22,12 @@ class FixShelfCoverImageTypes extends Migration
|
|||
->pluck('image_id')
|
||||
->values()->all();
|
||||
|
||||
DB::table('images')
|
||||
->where('type', '=', 'cover_book')
|
||||
->whereIn('id', $shelfImageIds)
|
||||
->update(['type' => 'cover_bookshelf']);
|
||||
if (count($shelfImageIds) > 0) {
|
||||
DB::table('images')
|
||||
->where('type', '=', 'cover_book')
|
||||
->whereIn('id', $shelfImageIds)
|
||||
->update(['type' => 'cover_bookshelf']);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue