Associations
class Holiday < AllFutures::Base
attribute :date, :date
validates :date, presence: true
end
class HolidaysForm < AllFutures::Base
embeds_many :holidays
accepts_nested_attributes_for :holidays, reject_if: :all_blank
endLast updated