I have searched for how to create db in production environment for rails and got 2 answers. Now I am confused with those answers.
RAILS_ENV=production rake db:create db:schema:load
RAILS_ENV=production rake db:create
What is the difference between these two? What does this schema means?
Why do we need db:schema:load
?
Thanks in advance.