Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As per Ruby on Rails convention, controller names get pluralized while model names are singular. Example : a Users controller, but a User model.

rails generate controller Users
rails generate model User name:string email:string

Now open migration file

 class CreateUsers < ActiveRecord::Migration
  def change
    create_table :users do |t|
      t.string :name
      t.string :email    
      t.timestamps
    end
  end
end

Here table name is plural (users).

So my question is - Why table name is plural (users) even though the model name is singular (User)?

share|improve this question
   
good questions for beginners – Amit Pandya Apr 9 '12 at 19:03

4 Answers

up vote 8 down vote accepted

Ruby on Rails follow linguistic convention. That means a model represents a single user, whereas a database table consists of many users.

share|improve this answer
1  
So what's the story for non-standard pluralizations? For instance, if my model were "Activity", would the table end up being "Activities" or "Activitys"? – sak Sep 20 '12 at 14:59
3  
It would be "Activities" the rails helper method "pluralize" is very clever. It knows that the plural of 'person' is 'people', and so on. api.rubyonrails.org/classes/ActionView/Helpers/… – Matt Connolly Sep 27 '12 at 0:39

An instance of your User model represents a single user, so is singular. The users table, by contrast, holds all of your users, so it's plural.

share|improve this answer

Because the table holds users. Its just the convention.

share|improve this answer

To complete Emily's answer

An instance of your User model represents a single user, so is singular. The users table, by contrast, holds all of your users, so it's plural.

Check this link about Rails naming convention.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.