From 2e0ad12c2df85a6fc718112847a4b70c0dd76d0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cau=C3=AA=20Faleiros?= Date: Thu, 5 Feb 2026 14:27:52 -0300 Subject: [PATCH] Fix: Enable force seeding for tenants in production Uncommented the '--force' flag in config/tenancy.php seeder_parameters. Without this, tenant databases are created but not seeded (no admin user) in the production environment, preventing login. --- config/tenancy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/tenancy.php b/config/tenancy.php index 0e194b5..f7c9f27 100644 --- a/config/tenancy.php +++ b/config/tenancy.php @@ -200,6 +200,6 @@ return [ */ 'seeder_parameters' => [ '--class' => 'DatabaseSeeder', // root seeder class - // '--force' => true, // This needs to be true to seed tenant databases in production + '--force' => true, // This needs to be true to seed tenant databases in production ], ];