salix/services/db/03-changes.sh

7 lines
110 B
Bash
Raw Normal View History

#!/bin/bash
for file in changes/*/*.sql; do
echo "Importing $file"
2018-03-13 10:15:39 +00:00
mysql -u root -proot < $file
done