Skip to content

Instantly share code, notes, and snippets.

View mstrouhal's full-sized avatar

Martin Strouhal mstrouhal

  • SmartEmailing
View GitHub Profile
@attilahorvath
attilahorvath / dump_restore_mysql_utf8mb4.sh
Created March 13, 2015 13:33
Dump/restore MySQL database with utf8mb4 encoding
# dump
mysqldump -u user -p database --default-character-set=utf8mb4 --result-file=dump.sql
# restore
mysql -u user -p database < dump.sql