diff --git a/README.md b/README.md
index c10ae2987adb7b299c1eb883b42b10bc99c71fe6..1125d5333be04a717aabe263ca950ad2fc2d671f 100644
--- a/README.md
+++ b/README.md
@@ -74,3 +74,16 @@ This is a project implementing the blog post by Mbithe Nzomo.
 	189 	cls, key = identity_key(instance=obj)[:2]
 	190 	return ':'.join(text_type(x) for x in key)
 	```
+
+3. When use SQLite as database
+
+	```shell
+	OperationalError: (sqlite3.OperationalError) no such table
+	```
+
+	**Solution:**
+	Move sqlite database file into app directory
+
+	```shell
+	$ mv app.db app/
+	```