From b59237e1567892d8bdc0e9468401f8ed30b8aa3b Mon Sep 17 00:00:00 2001 From: Scott Kitterman Date: Sat, 26 Nov 2016 16:50:53 -0500 Subject: [PATCH] Fix non-UTF-8 character in README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index b8d5cac..a2231e5 100644 --- a/README.rst +++ b/README.rst @@ -22,7 +22,7 @@ django-hstore You need **dynamic columns** in your tables. What do you do? -- Create lots of tables to handle it. Nice, now you’ll need more models and lots of additional sqls. Insertion and selection will be slow as hell. +- Create lots of tables to handle it. Nice, now you'll need more models and lots of additional sqls. Insertion and selection will be slow as hell. - Use a **noSQL** database just for this issue. **Good luck**. - Create a serialized column. Nice, insertion will be fine, and reading data from a record too. But, what if you have a condition in your select that includes serialized data? Yeah, regular expressions.