opensupports/tests/clean_db.sh

10 lines
214 B
Bash
Raw Normal View History

2016-05-15 01:22:46 +02:00
#!/bin/bash
# DELETE ALL TABLES
TABLES=$(mysql -u root development -e "SHOW TABLES IN development;" | awk '{ print $1}' | grep -v '^Tables')
2016-05-15 01:22:46 +02:00
for t in $TABLES
do
mysql -u root development -e "DROP TABLE $t"
done