From 7501f98b2b5793df6e5349ec5548811ea44fe145 Mon Sep 17 00:00:00 2001 From: Mathijs van Veluw Date: Fri, 22 Oct 2021 18:17:57 +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 145770f..b72cc72 100644 --- a/Migrating-from-MariaDB-(MySQL)-to-SQLite.md +++ b/Migrating-from-MariaDB-(MySQL)-to-SQLite.md @@ -40,8 +40,8 @@ mysqldump \ --hex-blob \ --skip-quote-names \ | grep "^INSERT INTO" | grep -v "__diesel_schema_migrations" \ - | sed 's#\\"#"#g' \ - | sed -sE "s#,0x([^,]*)#,X'\L\1'#g" \ + | sed 's#\\"#"#gm' \ + | sed -sE "s#,0x([^,]*)#,X'\L\1'#gm" \ > mysql-to-sqlite.sql ```