intimate/sql/remake_database.sh
2020-07-27 00:35:41 +08:00

11 lines
313 B
Bash

# /bin/bash
USER=root
HOST=127.0.0.1
PORT=4000
# mysql -h $HOST -u $USER -P $PORT -c "drop database intimate_source";
# mysql -h $HOST -u $USER -P $PORT -c "drop database intimate_extractor";
mysql -h $HOST -u $USER -P $PORT < ./intimate_extractor.sql;
mysql -h $HOST -u $USER -P $PORT < ./intimate_source.sql;