change git root

This commit is contained in:
2019-03-03 16:13:24 -07:00
parent a1d5a82570
commit 96c90a3c49
71 changed files with 180 additions and 18 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
for sqlScript in $( find . -name "*.sql" -print | sort);
do
echo "**** $sqlScript ****"
mysql -u panda -psecret < $sqlScript
done