From b3c25fc06e7afe71c6d8531b9f997cae5d829b6a Mon Sep 17 00:00:00 2001 From: Ryan Mitchell Date: Wed, 8 May 2024 07:12:38 +0100 Subject: [PATCH] Same fix on update paths but for master (#282) * Same fix on update paths but for master --- src/Updates/SplitGlobalsFromVariables.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Updates/SplitGlobalsFromVariables.php b/src/Updates/SplitGlobalsFromVariables.php index 0fcacef9..6f803a91 100644 --- a/src/Updates/SplitGlobalsFromVariables.php +++ b/src/Updates/SplitGlobalsFromVariables.php @@ -16,8 +16,8 @@ public function shouldUpdate($newVersion, $oldVersion) public function update() { - $source = __DIR__.'/../../database/migrations/create_global_variables_table.php.stub'; - $dest = database_path('migrations/'.date('Y_m_d_His').'_create_global_variables_table.php'); + $source = __DIR__.'/../../database/migrations/2024_03_07_100000_create_global_variables_table.php'; + $dest = database_path('migrations/2024_03_07_100000_create_global_variables_table.php'); $this->files->copy($source, $dest);