Skip to content

Instantly share code, notes, and snippets.

@danlynn
Created June 30, 2010 16:27
Show Gist options
  • Save danlynn/458900 to your computer and use it in GitHub Desktop.
Save danlynn/458900 to your computer and use it in GitHub Desktop.
class Owner < ActiveRecord::Base
belongs_to :owner
# fields: name, fullname, email, phone, owner_id
def self.find_incomplete_owners
Owner.find(:all, :conditions => "fullname is null or email is null")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment