Add the line:
ActiveRecord::Base.pluralize_table_names = false
to the bottom of:
rails_application_path/config/environment.rb
---- Question: You will have to do extra work to make fixtures work in unit tests, right? ---- I find this pluralisation to be one of weirdest features in the framework. I personally like my tables as non-pluralized nouns but whatever. I just wanted to comment that I think it is bizarre. The framework rocks however. --- What about a table named equipment? I added the line: set_table_name "equipment" to the equipment model, but then ./script/generate scaffold Equipment Equipment failed to generate the _form.rhtml properly.