chore: comment out destructive command prohibition in AppServiceProvider

This commit is contained in:
Paulo Castellano 2026-05-03 19:45:38 -03:00
parent afc47e9532
commit 28ea0c8222

View file

@ -245,9 +245,9 @@ protected function configureDefaults(): void
JsonResource::withoutWrapping();
Model::shouldBeStrict(! $this->app->isProduction());
DB::prohibitDestructiveCommands(
app()->isProduction(),
);
// DB::prohibitDestructiveCommands(
// app()->isProduction(),
// );
Password::defaults(fn (): ?Password => app()->isProduction()
? Password::min(12)