2023-06-11 12:14:03 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace FleetCart\Scripts;
|
|
|
|
|
|
|
|
use FleetCart\FleetCart;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
|
|
|
|
class V2_0_0
|
|
|
|
{
|
2023-12-03 14:07:47 +00:00
|
|
|
public function run(): void
|
2023-06-11 12:14:03 +00:00
|
|
|
{
|
|
|
|
if (version_compare(FleetCart::VERSION, '2.0.0', '=')) {
|
|
|
|
DB::delete("DELETE FROM `settings` WHERE `key` LIKE 'storefront_%' AND NOT `key` = 'storefront_copyright_text'");
|
|
|
|
DB::delete("DELETE FROM `translations` WHERE `key` LIKE 'storefront::%'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|