Apply more than one condition to find(:all)

Logo.find(:all, :conditions => {:created_at => @date, :parent_id => nil})

Logo.find(:all, :conditions => ["created_at = ? AND parent_id = ?", Date.today, nil])