From 0228c6b554918b0caf2e20e67192aa4a9f9f0501 Mon Sep 17 00:00:00 2001 From: Don Kingdon Date: Sun, 19 Apr 2026 00:30:20 +0000 Subject: [PATCH] v1.1.0-alpha1 schema + service scaffolding --- patch1.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 patch1.sh diff --git a/patch1.sh b/patch1.sh new file mode 100755 index 0000000..fadc975 --- /dev/null +++ b/patch1.sh @@ -0,0 +1,22 @@ +cd /opt/otb_cloud || exit 1 + +echo "===== version =====" +cat VERSION + +echo +echo "===== new tables present in schema =====" +grep -n "CREATE TABLE IF NOT EXISTS video_jobs" -A25 app/models/schema.sql +echo +grep -n "CREATE TABLE IF NOT EXISTS tenant_usage_metrics" -A20 app/models/schema.sql + +echo +echo "===== new services =====" +find app/services -maxdepth 1 -type f | sort + +echo +echo "===== updated device dirs helper =====" +grep -n 'for subdir in \[' -A2 app/auth/utils.py + +echo +echo "===== git status =====" +git status --short