Remove userInteraction from 'config_startup' (#3465)

Removes UserInteraction from existing eggs in the panel, as its no longer supported.
This commit is contained in:
Charles Morgan 2021-07-17 13:02:58 -04:00 committed by GitHub
parent 2c2c35303a
commit c54ce995a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,27 @@
<?php
use Illuminate\Support\Facades\DB;
use Illuminate\Database\Migrations\Migration;
class RemoveUserInteraction extends Migration
{
/**
* Run the migrations.
* @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())'),
]);
}
}