diff options
author | Erich Eckner <git@eckner.net> | 2018-01-22 13:46:36 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-01-22 13:46:36 +0100 |
commit | 511834749b219fb3ea7f52dbe14a9634c156f0ac (patch) | |
tree | 8ba5cb7e13bd0e59c073bbeec16d21a888caada1 /bin | |
parent | 195f789f10cf251d5c2736ba52ebc50420694609 (diff) | |
download | builder-511834749b219fb3ea7f52dbe14a9634c156f0ac.tar.xz |
bin/bootstrap-mysql: whoops, fix column orderd
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/bootstrap-mysql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bootstrap-mysql b/bin/bootstrap-mysql index 62dad81..6da2c86 100755 --- a/bin/bootstrap-mysql +++ b/bin/bootstrap-mysql @@ -233,7 +233,7 @@ fi sed 's|,$||' printf ';\n' # shellcheck disable=SC2016 - printf 'INSERT IGNORE INTO `fail_reasons` (`name`,`identifier`,`severity`) VALUES ' + printf 'INSERT IGNORE INTO `fail_reasons` (`identifier`,`name`,`severity`) VALUES ' printf '(from_base64("%s"),"%s",%s),' \ "$( printf '%s' '==> ERROR: A failure occurred in build()\.' | \ |