Class: Branchbot::Adapters::MySQL
- Defined in:
- lib/branchbot/adapters/mysql.rb
Instance Method Summary collapse
-
#initialize ⇒ MySQL
constructor
A new instance of MySQL.
Methods inherited from Abstract
build, #dump, #dump_exists?, #restore
Constructor Details
#initialize ⇒ MySQL
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 |