for f in sql/migrations/*.sql; do
  echo "Applying $f"
  mysql -h localhost -u jumphost -p queensu_artsci_appeals < "$f" || { echo "Failed on $f"; break; }
done

