summaryrefslogtreecommitdiff
path: root/scripts/schema_changed.sh
diff options
context:
space:
mode:
authorAndreas Brandl <abrandl@gitlab.com>2019-06-24 14:31:56 +0200
committerAndreas Brandl <abrandl@gitlab.com>2019-06-24 14:31:56 +0200
commit79bb43979929bc8dbee9ceee4df6bc03c516f729 (patch)
treea7d8de2d1bde5869590a138a98743229d013d362 /scripts/schema_changed.sh
parent79d741508c3d3e165da14366f06e3c0256b72222 (diff)
downloadgitlab-ce-ab-structure-sql.tar.gz
CI changes for structure.sqlab-structure-sql
Diffstat (limited to 'scripts/schema_changed.sh')
-rw-r--r--scripts/schema_changed.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/schema_changed.sh b/scripts/schema_changed.sh
index b5e510c2367..e8c120e92e1 100644
--- a/scripts/schema_changed.sh
+++ b/scripts/schema_changed.sh
@@ -1,14 +1,14 @@
#!/bin/sh
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"
+ if [ ! -z "$(git diff --name-only -- db/structure.sql)" ]; then
+ printf "db/structure.sql 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)
+ diff=$(git diff -p --binary -- db/structure.sql)
printf "%s" "$diff"
exit 1
else
- printf "db/schema.rb after rake db:migrate:reset matches one in the repository"
+ printf "db/structure.sql after rake db:migrate:reset matches one in the repository"
fi
}