Seth Thomas Rasmussen wrote:

>>Wondering... is that a typo or is it really 'blog_post' instead of
>>'blog_posts'? The default AR convention is pluralized table names.
>>    
>>
>
>Is that the AR convention, or is that how AR operates in the context of
>Rails, which uses Inflector to translate all those names back and forth
>for you?
>
Jacob was right about that typo: it's `blog_posts'.

AR convention is to figure out the table names from the class names and 
vice versa.  Camping sticks on the `blog_' prefix (based on the name of 
the module your app is stored in.)

_why