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
The rails:db_migrate task uses current_path!, but current/ will still point to the previous deploy until the deploy task re-symlinks current/.
current_path!
current/
The text was updated successfully, but these errors were encountered:
The rails taksk are meant to be invoked inside deploy scripts as stated here: https://github.com/mina-deploy/mina/blob/master/lib/mina/rails.rb#L128
So you wont be able to run those with
mina rails:db_migrate
you can always do
mina 'rake[db:migrate]'
Sorry, something went wrong.
No branches or pull requests
The rails:db_migrate task uses
current_path!
, butcurrent/
will still point to the previous deploy until the deploy task re-symlinkscurrent/
.The text was updated successfully, but these errors were encountered: