## # MySQL [Database] # database MySQL do |db| db.name = "my_database_name" db.username = "my_username" db.password = "my_password" db.host = "localhost" db.port = 3306 db.socket = "/tmp/mysql.sock" db.skip_tables = ['skip', 'these', 'tables'] db.only_tables = ['only', 'these' 'tables'] db.additional_options = ['--quick', '--single-transaction'] end