diff --git a/content/roadmaps/101-backend/content/108-more-about-databases/100-orms.md b/content/roadmaps/101-backend/content/108-more-about-databases/100-orms.md
index 0774e010e..52eba2cfa 100644
--- a/content/roadmaps/101-backend/content/108-more-about-databases/100-orms.md
+++ b/content/roadmaps/101-backend/content/108-more-about-databases/100-orms.md
@@ -1 +1,7 @@
-# Orms
\ No newline at end of file
+# ORMs
+
+Object-Relational Mapping (ORM) is a technique that lets you query and manipulate data from a database using an object-oriented paradigm. When talking about ORM, most people are referring to a library that implements the Object-Relational Mapping technique, hence the phrase "an ORM".
+
+Free Content
+Object Relational Mapping - Wikipedia
+What is an ORM and how should I use it?