Method: Backup::Database::MySQL#perform!

Defined in:
lib/backup/database/mysql.rb

#perform!Object

Performs the mysqldump command and outputs the data to the specified path based on the ‘trigger’



97
98
99
100
# File 'lib/backup/database/mysql.rb', line 97

def perform!
  log!
  run("#{mysqldump} > '#{File.join(dump_path, name)}.sql'")
end