We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rails db:system:change
As I reported at rails/rails#34710 (comment), rails db:system:change command fails only via spring.
% rails db:system:change --to=postgresql Running via Spring preloader in process 15906 invalid option: --to=postgresql
Probably due to the following spring update.
b85f41b
This forces to call rake for all db commands, but exceptionally the new db:system:change command is not a rake task.
db:system:change
% rake db:system:change --to=postgresql invalid option: --to=postgresql
The following simple fix works fine in my environment. How about this fix?
elsif command_name&.start_with?("db:") && !command_name.start_with?("db:system")
The text was updated successfully, but these errors were encountered:
That fix looks good to me too, want to make a PR?
Sorry, something went wrong.
@ghiculescu Thank you for your reply. Yes, I will make PR.
Successfully merging a pull request may close this issue.
As I reported at rails/rails#34710 (comment),
rails db:system:change
command fails only via spring.Probably due to the following spring update.
b85f41b
This forces to call rake for all db commands, but exceptionally the new
db:system:change
command is not a rake task.The following simple fix works fine in my environment.
How about this fix?
The text was updated successfully, but these errors were encountered: