Skip to content

Instantly share code, notes, and snippets.

@joeunrue
Forked from brysgo/post_checkout_migrations.sh
Last active August 29, 2015 14:07
Show Gist options
  • Save joeunrue/e931515c4e83ca88f0dd to your computer and use it in GitHub Desktop.
Save joeunrue/e931515c4e83ca88f0dd to your computer and use it in GitHub Desktop.
CHECKING_OUT_BRANCH=$3
OLD_BRANCH=$1
NEW_BRANCH=$2
if [ $CHECKING_OUT_BRANCH -eq 1 ]
then
FILES_CHANGED=`git diff $OLD_BRANCH $NEW_BRANCH --name-status`
MIGRATIONS_REMOVED=`echo "$FILES_CHANGED" | egrep 'D\tdb/migrate/([0-9]+)' | sort -r`
MIGRATIONS_ADDED=`echo "$FILES_CHANGED" | egrep 'A\tdb/migrate/([0-9]+)'`
# CHECK IF WE NEED TO DO A BUNDLE
BUNDLE_CHANGED=`echo "$FILES_CHANGED" | egrep 'M\tGemfile.lock'`
if [ ! -z "$BUNDLE_CHANGED" ]; then
echo "Your Gemfile.lock has changed, running bundle"
bundle
fi
# CHECK IF WE NEED TO DO A BOWER
BOWER_CHANGED=`echo "$FILES_CHANGED" | egrep 'M\tbower.json'`
if [ ! -z "$BOWER_CHANGED" ]; then
echo "Your bower.json has changed, running bower install"
bower install
fi
if [ ! -z "$MIGRATIONS_REMOVED" ]; then
echo "Rolling back missing migrations"
for migration in $MIGRATIONS_REMOVED
do
if [ $migration == "D" ]; then
continue
fi
git checkout "$OLD_BRANCH" -- "$migration"
VERSION=`echo "$migration" | cut -d'_' -f1 | cut -d'/' -f3`
bundle exec rake db:migrate:down VERSION="$VERSION"
git reset
rm "$migration"
done
bundle exec rake db:test:prepare
git checkout db/schema.rb
fi
if [ ! -z "$MIGRATIONS_ADDED" ]; then
echo "New migrations have been added running migrations"
bundle exec rake db:migrate db:test:prepare
fi
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment