From b09c6d56832eb1718c07d74abf3bc6ae3fe4e030 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 14:36:04 +0200 Subject: Adding upstream version 1.1.0. Signed-off-by: Daniel Baumann --- tools/dev_update_schema.sh | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 tools/dev_update_schema.sh (limited to 'tools') diff --git a/tools/dev_update_schema.sh b/tools/dev_update_schema.sh new file mode 100755 index 0000000..e1d08d6 --- /dev/null +++ b/tools/dev_update_schema.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +set -e +set -o pipefail + +cd "$(dirname "$0")" + +BASEDIR=".." + +test "$1" = '-f' || ( + echo "Run '$0' -f to DROP ALL ICINGADB TABLES and re-create them using the current schema" + false +) + +set -x + +( + mysql -uroot -e 'SHOW TABLES\G' icingadb