mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
10 lines
239 B
Ruby
10 lines
239 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
|