Files
grecia/app/models/web_section.rb
2021-02-26 16:16:51 +01:00

6 lines
184 B
Ruby

class WebSection < ApplicationRecord
has_many :sections
has_many :banners, through: :sections
has_one :header, class_name: "Widget::Card", as: :cardable, dependent: :destroy
end