Skip to content

Commit

Permalink
drop "mysql8" reference (#1926)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
browner12 authored Jan 19, 2024
1 parent bc80360 commit 4fe53df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/homestead.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 4fe53df

Please sign in to comment.