]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Add bullets (#10973)
authorArtem Smirnov <urpylka@users.noreply.github.com>
Tue, 6 Feb 2024 17:55:41 +0000 (19:55 +0200)
committerGitHub <noreply@github.com>
Tue, 6 Feb 2024 17:55:41 +0000 (18:55 +0100)
* Add bullets

* Fix as suggested

doc/build/orm/inheritance.rst

index 3764270d8c4458879811fdd8d1085b9a703c8a4c..7a19de9ae429a4ca9d5de6dabef0fccdff9847bb 100644 (file)
@@ -3,12 +3,13 @@
 Mapping Class Inheritance Hierarchies
 =====================================
 
-SQLAlchemy supports three forms of inheritance: **single table inheritance**,
-where several types of classes are represented by a single table, **concrete
-table inheritance**, where each type of class is represented by independent
-tables, and **joined table inheritance**, where the class hierarchy is broken
-up among dependent tables, each class represented by its own table that only
-includes those attributes local to that class.
+SQLAlchemy supports three forms of inheritance:
+
+* **single table inheritance** – several types of classes are represented by a single table;
+
+* **concrete table inheritance** – each type of class is represented by independent tables;
+
+* **joined table inheritance** – the class hierarchy is broken up among dependent tables. Each class represented by its own table that only includes those attributes local to that class.
 
 The most common forms of inheritance are single and joined table, while
 concrete inheritance presents more configurational challenges.