File: /var/www/limestate-admin/database/migrations/2024_03_18_171500_remove_unavailable_images.php
<?php
use App\Models\ExternalImage;
use Illuminate\Database\Migrations\Migration;
return new class extends Migration {
/**
* Run the migrations.
*/
public function up(): void
{
ExternalImage::query()
->where('file', 'NOT LIKE', 'https://admin.limestate.ru/storage%')
->where('file', 'NOT LIKE', '%limestate.ru/wp-content/uploads%')
->delete();
}
/**
* Reverse the migrations.
*/
public function down(): void
{
}
};