You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey there,
I just wanted to let you know that I successfully integrated your precious rake task in our project. I copied the rake file though, because I don't want to maintain another dependency. I provided a comment in said file with a link back to your repo to forward any future praise straight to you.
Due to the correct usage of exit codes I was able to directly integrate in our GitHub pipeline 👍
# [...] depends on a previous `db:test:prepare`
- name: Check Schema
run: |
bin/rake db:migrate:reset:check
We frequently use rake db:migrate:reset to restore the schema file if changes got lost across merged changes. After that happened again and again I wanted to run a task on the CI environment and compare the diff of the schema file. An obligatory search upfront pointed me to your repo and saved me a few hours for sure.
Thanks for sharing your work.
The text was updated successfully, but these errors were encountered:
Hey there,
I just wanted to let you know that I successfully integrated your precious rake task in our project. I copied the rake file though, because I don't want to maintain another dependency. I provided a comment in said file with a link back to your repo to forward any future praise straight to you.
Due to the correct usage of exit codes I was able to directly integrate in our GitHub pipeline 👍
We frequently use
rake db:migrate:reset
to restore the schema file if changes got lost across merged changes. After that happened again and again I wanted to run a task on the CI environment and compare the diff of the schema file. An obligatory search upfront pointed me to your repo and saved me a few hours for sure.Thanks for sharing your work.
The text was updated successfully, but these errors were encountered: