AR Associations- Am I missing something?

class User < ActiveRecord::Base   has_many :not_deleted_posts, :class_name => "Post", :conditions => "not_deleted is true"   has_many todays_post, :class_name => "Post", :conditions => "date = today" end

Is this what you're looking for ?

Thanks, Pratik