mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
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
@ -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 New Issue
Block a user