From 4fe53dfe3fa0e9b295567da2ec2193b0691e1f6b Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Fri, 19 Jan 2024 13:30:53 -0600 Subject: [PATCH] drop "mysql8" reference (#1926) this is a remnant of long ago in our v5 to v8 transition. we now *only* install MySQL8, so we don't really need this anymore. if people still have it in their `homestead.yaml` it'll still be fine with my other PR. this also syncs it up with the duplicated code we have farther down. --- scripts/homestead.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/homestead.rb b/scripts/homestead.rb index 372a46d76..914f595de 100644 --- a/scripts/homestead.rb +++ b/scripts/homestead.rb @@ -610,7 +610,7 @@ def self.configure(config, settings) end settings['databases'].each do |db| - if (enabled_databases.include? 'mysql') || (enabled_databases.include? 'mysql8') || (enabled_databases.include? 'mariadb') + if (enabled_databases.include? 'mysql') || (enabled_databases.include? 'mariadb') config.vm.provision 'shell' do |s| s.name = 'Creating MySQL / MariaDB Database: ' + db s.path = script_dir + '/create-mysql.sh'