I have the follwing at the model:
validates_uniqueness_if :posicao_bastidor, :message => "my message"
When an error occurs, rails gives me the following message:
"Posicao bastidor my message"
I don't want 'Posicao bastidor' to appear. I want just the message.
Some clue on how to do it ?