6 lines
93 B
Ruby
6 lines
93 B
Ruby
class History < ApplicationRecord
|
|
self.table_name = "histories"
|
|
|
|
belongs_to :channel
|
|
end
|