From e46355fb9d09a7f6eeef2c8c4d0ac064f2be4340 Mon Sep 17 00:00:00 2001 From: Johannes Date: Thu, 13 Mar 2025 17:01:51 +0100 Subject: [PATCH] [3.x] Add comment to config file explaining --force with seeding in production (#1326) * add comment in seed config for clarification * test tenant creation seeding also in production environments (with force) * revert changes in DatabasePreparationTest --- assets/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/config.php b/assets/config.php index a10ad33c..a9fd2b92 100644 --- a/assets/config.php +++ b/assets/config.php @@ -194,6 +194,6 @@ return [ */ 'seeder_parameters' => [ '--class' => 'DatabaseSeeder', // root seeder class - // '--force' => true, + // '--force' => true, // This needs to be true to seed tenant databases in production ], ];