Merge branch 'develop' into feature/react-admin

This commit is contained in:
Matthew Penner 2021-07-17 11:12:02 -06:00
commit bc4e28578d
24 changed files with 356 additions and 165 deletions

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())'),
]);
}
}