Script for dumping MySQL database prepared for Git commit (i.e. no extended inserts).

This commit is contained in:
Markus Birth 2013-06-12 20:08:31 +02:00
parent 1a9de96761
commit 7af8328ccf

2
db-dump-git Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
mysqldump --skip-extended-insert "$1" >"mysql-$1.sql"