I'have created model using rails generate model users.i have created new data base readit_development and granted all privileges on this database to user readitadmin. In my database.yml file i have given user name as readitadmin and password as "password" and adapter mysql2. after rake db:schema:dump command file db/migrate/20160914144019_create_users.rb was created. after db:migrate command i can not find table users in the database. i didn't get any error after db:migrate command. what could be the problem? i am naive to ruby on rails.
My model name was "users". Which is plural. But when i destroyed my model and created new model "user" then added some fields, db:migrate worked and created table for me in database. i don't what is wrong with plural model name.