The good -> That worked!! Thank you!!
The bad. I am now stuck at -> Step 4: Create a new Rails app.
I get the ‘approximate expected result’ output EXCEPT that when I click on http://localhost:3000 I get the following error instead of the Yay! You’re on Rails!
ActiveRecord::PendingMigrationError
Migrations are pending. To resolve this issue, run: bin/rails db:migrate RAILS_ENV=development
Extracted source (around line #576):
574
575
576
577
578
579
# Raises <tt>ActiveRecord::PendingMigrationError</tt> error if any migrations are pending.
def check_pending!(connection = Base.connection)
raise ActiveRecord::PendingMigrationError if ActiveRecord::Migrator.needs_migration?(connection)
end
def load_schema_if_pending!