From ae647d0c4de1d09fc18b7705a9f791272e3b9abb Mon Sep 17 00:00:00 2001 From: DariusIII Date: Sun, 28 Apr 2024 13:07:05 +0200 Subject: [PATCH] Fix error in config/database --- config/database.php | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/config/database.php b/config/database.php index fdaebec74..8a7aaedba 100644 --- a/config/database.php +++ b/config/database.php @@ -67,14 +67,33 @@ return [ ], ], + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run on the database. + | + */ + 'migrations' => [ - 'table' => [ - 'table' => 'migrations', - 'update_date_on_publish' => false, // disable to preserve original behavior for existing applications - ], - 'update_date_on_publish' => false, // disable to preserve original behavior for existing applications + 'table' => 'migrations', + 'update_date_on_publish' => true, ], + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as Memcached. You may define your connection settings here. + | + */ + 'redis' => [ 'client' => env('REDIS_CLIENT', 'phpredis'), 'options' => [