How to pass default locales from a database? Although, code below works, but it breaks the application when you try to run for example php artisan migrate on a fresh database. ```php ->plugin( SpatieLaravelTranslatablePlugin::make() ->defaultLocales(Language::all()->pluck('code')->toArray()) ) ```