Skip to content

Instantly share code, notes, and snippets.

View inaimathi's full-sized avatar
🎯
Focusing

Leo Zovic inaimathi

🎯
Focusing
View GitHub Profile
@wbailey
wbailey / databases.rake
Created February 11, 2011 08:58
ActiveRecord migrations outside of Rails
require 'yaml'
require 'logger'
require 'active_record'
namespace :db do
def create_database config
options = {:charset => 'utf8', :collation => 'utf8_unicode_ci'}
create_db = lambda do |config|
ActiveRecord::Base.establish_connection config.merge('database' => nil)