Backport schema_changed.sh from EE which prints the diff if the schema is different
This commit is contained in:
parent
f981d4febb
commit
8f51727d95
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Backport schema_changed.sh from EE which prints the diff if the schema is different
|
||||||
|
merge_request: 21422
|
||||||
|
author: Jasper Maes
|
||||||
|
type: other
|
||||||
|
|
@ -1,9 +1,14 @@
|
||||||
function schema_changed() {
|
#!/bin/sh
|
||||||
if [[ ! -z `git diff --name-only -- db/schema.rb` ]]; then
|
|
||||||
echo "db/schema.rb after rake db:migrate:reset is different from one in the repository"
|
schema_changed() {
|
||||||
|
if [ ! -z "$(git diff --name-only -- db/schema.rb)" ]; then
|
||||||
|
printf "db/schema.rb after rake db:migrate:reset is different from one in the repository"
|
||||||
|
printf "The diff is as follows:\n"
|
||||||
|
diff=$(git diff -p --binary -- db/schema.rb)
|
||||||
|
printf "%s" "$diff"
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "db/schema.rb after rake db:migrate:reset matches one in the repository"
|
printf "db/schema.rb after rake db:migrate:reset matches one in the repository"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue