Skip to content

Commit ae3f098

Browse files
Use proper name for add_migrations
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.
1 parent 102fb7c commit ae3f098

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/generators/solidus/auth/install/install_generator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def generate_devise_key
1818
end
1919

2020
def add_migrations
21-
run 'bundle exec rake railties:install:migrations FROM=solidus_auth_devise'
21+
run 'bundle exec rake railties:install:migrations FROM=solidus_auth'
2222
end
2323

2424
def run_migrations

0 commit comments

Comments
 (0)