in quick orm, how should i set up a relationship where i have say, a statusID column that maps to a table holding statusID and statusDescription, and in my queries I'll want to limit based on the statusDescription through those tables being joined? I tried to do a belongsTo but I'm not sure how to then get only those records where the statusDescription is being used... so SELECT * FROM someTable t JOIN statusTable s ON s.statusID = t.statusID WHERE s.statusDescription = 'foo';