On 3 November 2015 at 19:22, Eli Jackson <
li...@ruby-forum.com> wrote:
> Migrations are pending. To resolve this issue, run: bin/rake db:migrate
> RAILS_ENV=development
It means what it says, that database migrations are pending (which
means you have provided one or more migration files but have not yet
run them). Assuming that is the case then you have to run
rake db:migrate
in order to apply them.
However I deduce from this that you are a beginner with Rails and
suggest that you start by working right through a good tutorial such
as
railstutorial.org (which is free to use online). That will show
you the basics of rails.
By the way it really is better to ask a question when you want help
rather than making a statement and hoping we will guess what question
you are trying to ask.
Colin