mirror of
https://github.com/System-End/identity-vault.git
synced 2026-04-19 22:05:07 +00:00
7 lines
177 B
Ruby
7 lines
177 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AnalyticsRecord < ActiveRecord::Base
|
|
self.abstract_class = true
|
|
|
|
connects_to database: { writing: :analytics, reading: :analytics }
|
|
end
|