class Ppa::VotoDaProposta < ApplicationRecord
	has_paper_trail

	belongs_to :proposta
	belongs_to :cidadao, class_name: 'PpaParticipativo::Cidadao'

	validates_uniqueness_of :proposta_id, scope: :cidadao_id

end
