The Rails convention is to make table names the plural form of the name, and the model as the singular form.
Makes sense when you think about the database. Your posts table contains all the individual post records.
Your Post
model is named as such because it is the blueprint for instantiating individual post objects.
Rails will not always generate the table name with an s
at the end. The maintainers of Rails understand that some words are irregular (e.g. 'person' and 'people'), and that some words that end in 's', like 'press' would be pluralized by adding an 'es' at the end.
For some cases, Rails isn't quite smart enough and you need to specify the plural form. You give a great example with press
. If you do rails g model press
, it will created a tabled called presses
. But if you mean press
as in 'the press', then presses
is not really correct.