I've been working on a project that uses model associations heavily, and it seems like I've found a case where the has_many or has_one through feature conflicts with the :conditions feature. In a nutshell, the problem is that the through association creates a table alias for the intermediate table in the has_one though relationship. But I don't know how to make that table alias appear in the condition I've defined.If that's hard to follow, maybe the code will help:I've been working on a project that uses model