2022-02-05 17:08:43 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class DropGoogleAnalytics extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function up(): void
|
2022-02-05 17:08:43 +00:00
|
|
|
{
|
|
|
|
DB::table('settings')->where('key', 'settings::app:analytics')->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function down(): void
|
2022-02-05 17:08:43 +00:00
|
|
|
{
|
2022-11-25 20:29:04 +00:00
|
|
|
DB::table('settings')->insert([
|
2022-02-05 17:08:43 +00:00
|
|
|
'key' => 'settings::app:analytics',
|
2022-11-25 20:29:04 +00:00
|
|
|
]);
|
2022-02-05 17:08:43 +00:00
|
|
|
}
|
|
|
|
}
|