By convention, should the following be defined as an instance method of my model or a helper method?
# app/models/user.rb class User < ActiveRecord::Base
Go with the first (keep in model), also because you might want to do other stuff, like combined indexes :)