Skip to content

Commit

Permalink
Use proper name for add_migrations
Browse files Browse the repository at this point in the history
Running the installer on a fresh master (v2.11) Solidus
the migrations are not copied in the Rails application.

We need to use the proper engine name in the FROM parameter.

This commit fixes that.
  • Loading branch information
peterberkenbosch committed Oct 19, 2020
1 parent 102fb7c commit ae3f098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/generators/solidus/auth/install/install_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def generate_devise_key
end

def add_migrations
run 'bundle exec rake railties:install:migrations FROM=solidus_auth_devise'
run 'bundle exec rake railties:install:migrations FROM=solidus_auth'
end

def run_migrations
Expand Down

0 comments on commit ae3f098

Please sign in to comment.