diff --git a/app/Http/Controllers/MigrationController.php b/app/Http/Controllers/MigrationController.php index 26c261c1fa1b..41f82d9fffb9 100644 --- a/app/Http/Controllers/MigrationController.php +++ b/app/Http/Controllers/MigrationController.php @@ -436,6 +436,14 @@ class MigrationController extends BaseController StartMigration::dispatch($migration_file, $user, $fresh_company); } } + + return response()->json([ + '_id' => Str::uuid(), + 'method' => config('queue.default'), + 'started_at' => now(), + ], 200); + } + } }