class Channel < ApplicationRecord self.table_name = "channels" self.inheritance_column = nil has_many :histories, -> { order(event_date: :asc) } end