mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 02:09:39 +02:00
6 lines
142 B
Ruby
6 lines
142 B
Ruby
module ApiLog
|
|
class Db < ActiveRecord::Base
|
|
self.abstract_class = true
|
|
establish_connection "api_log_#{Rails.env}".to_sym
|
|
end
|
|
end
|