Heres what I\'m trying to accomplish:
try this
def check_exists tag = Tag.where(:name => self.name, :user_id => current_user.id).first tag = Tag.new({:name => self.name, :user_id => current_user.id}) unless tag end
use Tag.new instead of Tag.create
Tag.new
Tag.create