2099dc01a6
* Routine weeding of the codebase * fix the spec
8 lines
186 B
Ruby
8 lines
186 B
Ruby
module Channel
|
|
class WebWidget < ApplicationRecord
|
|
self.table_name = 'channel_web_widgets'
|
|
|
|
belongs_to :account
|
|
has_one :inbox, as: :channel, dependent: :destroy
|
|
end
|
|
end
|