Browse Source

v1.1.0-alpha1 schema + service scaffolding

master
Don Kingdon 3 weeks ago
parent
commit
0228c6b554
  1. 22
      patch1.sh

22
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
Loading…
Cancel
Save