1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-25 18:42:31 +01:00
Pterodactyl-Panel/database/migrations/2021_07_12_013420_remove_userinteraction.php

29 lines
705 B
PHP
Raw Normal View History

<?php
use Illuminate\Support\Facades\DB;
use Illuminate\Database\Migrations\Migration;
class RemoveUserInteraction extends Migration
{
/**
* Run the migrations.
2021-08-16 02:20:36 +02:00
*
* @return void
*/
public function up()
{
// Remove User Interaction from startup config
DB::table('eggs')->update([
'config_startup' => DB::raw('JSON_REMOVE(config_startup, \'$.userInteraction\')'),
]);
}
public function down()
{
// Add blank User Interaction array back to startup config
DB::table('eggs')->update([
'config_startup' => DB::raw('JSON_SET(config_startup, \'$.userInteraction\', JSON_ARRAY())'),
]);
}
}