Class: Branchbot::Adapters::MySQL

Inherits:
Abstract
  • Object
show all
Defined in:
lib/branchbot/adapters/mysql.rb

Instance Method Summary collapse

Methods inherited from Abstract

build, #dump, #dump_exists?, #restore

Constructor Details

#initializeMySQL

Returns a new instance of MySQL.



5
6
7
8
9
10
# File 'lib/branchbot/adapters/mysql.rb', line 5

def initialize(*)
  super

  @username = @config['username']
  @password = @config['password']
end