From 89e5daa8914d9ec8fecfa9b8706df219d3c4b91a Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Tue, 17 Apr 2018 13:40:15 +0200 Subject: bin/check-db-structure: remove AUTO_INCREMENT for easy comparison --- bin/check-db-structure | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bin/check-db-structure') diff --git a/bin/check-db-structure b/bin/check-db-structure index f0cdf89..c92182c 100755 --- a/bin/check-db-structure +++ b/bin/check-db-structure @@ -16,4 +16,7 @@ printf 'SHOW CREATE TABLE `%s`;\n' "${table}" done } | \ - mysql_run_query + mysql_run_query | \ + sed ' + s/ AUTO_INCREMENT=[0-9]\+ / /g + ' -- cgit v1.2.3