1

Reorganizing database files

This commit is contained in:
Alex Yatskov 2014-09-20 18:35:33 +09:00
parent bb4a2ab896
commit 6a8f7bfa6d
3 changed files with 5 additions and 1 deletions

2
db/dump.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
mysqldump -u hscd hscd > hscd.sql

View File

@ -101,4 +101,4 @@ UNLOCK TABLES;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2014-09-20 18:31:08
-- Dump completed on 2014-09-20 18:34:01

2
db/load.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
mysql -u hscd hscd < hscd.sql