9 lines
237 B
Ruby
9 lines
237 B
Ruby
|
class ActiveRecord::Base
|
||
|
mattr_accessor :shared_connection
|
||
|
@@shared_connection = nil
|
||
|
|
||
|
def self.connection
|
||
|
@@shared_connection || retrieve_connection
|
||
|
end
|
||
|
end
|
||
|
ActiveRecord::Base.shared_connection = ActiveRecord::Base.connection
|