diff --git a/app/Http/Controllers/SettingsController.php b/app/Http/Controllers/SettingsController.php
index 7d2d2660ab..dcc0f9e093 100755
--- a/app/Http/Controllers/SettingsController.php
+++ b/app/Http/Controllers/SettingsController.php
@@ -256,7 +256,7 @@ class SettingsController extends Controller
Artisan::call('migrate', ['--force' => true]);
if ((! file_exists(storage_path().'/oauth-private.key')) || (! file_exists(storage_path().'/oauth-public.key'))) {
Artisan::call('migrate', ['--path' => 'vendor/laravel/passport/database/migrations', '--force' => true]);
- Artisan::call('passport:install');
+ Artisan::call('passport:install', ['--no-interaction' => true]);
}
return view('setup/migrate')
diff --git a/app/Models/CustomField.php b/app/Models/CustomField.php
index 81eff9b4cd..cc29cefe41 100644
--- a/app/Models/CustomField.php
+++ b/app/Models/CustomField.php
@@ -149,11 +149,6 @@ class CustomField extends Model
return true;
}
- // This is just a dumb thing we have to include because Laraval/Doctrine doesn't
- // play well with enums or a table that EVER had enums. :(
- $platform = Schema::getConnection()->getDoctrineSchemaManager()->getDatabasePlatform();
- $platform->registerDoctrineTypeMapping('enum', 'string');
-
// Rename the field if the name has changed
Schema::table(self::$table_name, function ($table) use ($custom_field) {
$table->renameColumn($custom_field->convertUnicodeDbSlug($custom_field->getOriginal('name')), $custom_field->convertUnicodeDbSlug());
diff --git a/resources/views/partials/forms/edit/image-upload.blade.php b/resources/views/partials/forms/edit/image-upload.blade.php
index 6bc77aaee0..8032cf85f1 100644
--- a/resources/views/partials/forms/edit/image-upload.blade.php
+++ b/resources/views/partials/forms/edit/image-upload.blade.php
@@ -4,7 +4,7 @@