Files
grecia/app/models/legislation/proposal.rb
María Checa f521a9023b Added Proposal model to Legislation
This new Legislation::Proposal model inherits from the original Proposal, as it will behave in a very similar way.
2017-09-13 15:43:36 +02:00

9 lines
252 B
Ruby

class Legislation::Proposal < Proposal
acts_as_paranoid column: :hidden_at
include ActsAsParanoidAliases
belongs_to :process, class_name: 'Legislation::Process', foreign_key: 'legislation_process_id'
scope :sorted, -> { order('id ASC') }
end