Skip to content

Commit 70ee72b

Browse files
authored
Add bullets (#10973)
* Add bullets * Fix as suggested
1 parent af1f9a4 commit 70ee72b

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

doc/build/orm/inheritance.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
Mapping Class Inheritance Hierarchies
44
=====================================
55

6-
SQLAlchemy supports three forms of inheritance: **single table inheritance**,
7-
where several types of classes are represented by a single table, **concrete
8-
table inheritance**, where each type of class is represented by independent
9-
tables, and **joined table inheritance**, where the class hierarchy is broken
10-
up among dependent tables, each class represented by its own table that only
11-
includes those attributes local to that class.
6+
SQLAlchemy supports three forms of inheritance:
7+
8+
* **single table inheritance** – several types of classes are represented by a single table;
9+
10+
* **concrete table inheritance** – each type of class is represented by independent tables;
11+
12+
* **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.
1213

1314
The most common forms of inheritance are single and joined table, while
1415
concrete inheritance presents more configurational challenges.

0 commit comments

Comments
 (0)