diff --git a/Migrating-from-MariaDB-(MySQL)-to-SQLite.md b/Migrating-from-MariaDB-(MySQL)-to-SQLite.md index 2df8e7d..145770f 100644 --- a/Migrating-from-MariaDB-(MySQL)-to-SQLite.md +++ b/Migrating-from-MariaDB-(MySQL)-to-SQLite.md @@ -37,8 +37,8 @@ mysqldump \ --single-transaction \ --no-create-db \ --no-create-info \ - --hex-blob \ - --skip-quote-names \ + --hex-blob \ + --skip-quote-names \ | grep "^INSERT INTO" | grep -v "__diesel_schema_migrations" \ | sed 's#\\"#"#g' \ | sed -sE "s#,0x([^,]*)#,X'\L\1'#g" \