class Rails::Generators::DevcontainerGenerator

def update_database_yml

def update_database_yml
  # Only postgresql has devcontainer specific configuration, so only update database.yml if we are using postgres
  return unless options[:database] == "postgresql"
  template("config/databases/#{options[:database]}.yml", "config/database.yml")
end