From 0e35a807392b5cdbecc8822684a5acf94a94dee3 Mon Sep 17 00:00:00 2001 From: Mathijs van Veluw Date: Fri, 22 Oct 2021 18:16:34 +0200 Subject: [PATCH] Updated Migrating from MariaDB (MySQL) to SQLite (markdown) --- Migrating-from-MariaDB-(MySQL)-to-SQLite.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" \