diff options
Diffstat (limited to 'bin/check-db-structure')
-rwxr-xr-x | bin/check-db-structure | 5 |
1 files changed, 4 insertions, 1 deletions
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 + ' |