Flowdock
method

creation_options

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: MySQLDatabaseTasks
creation_options() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/tasks/mysql_database_tasks.rb, line 77
        def creation_options
          Hash.new.tap do |options|
            options[:charset]     = configuration_hash[:encoding]   if configuration_hash.include?(:encoding)
            options[:collation]   = configuration_hash[:collation]  if configuration_hash.include?(:collation)
          end
        end
Register or log in to add new notes.