瀏覽代碼

Fixed #22601 -- Added a note about model inheritance.

Thanks semenov for the report.
Moayad Mardini 10 年之前
父節點
當前提交
2ea1e70b85
共有 1 個文件被更改,包括 8 次插入5 次删除
  1. 8 5
      docs/topics/db/models.txt

+ 8 - 5
docs/topics/db/models.txt

@@ -839,11 +839,14 @@ Model inheritance
 =================
 
 Model inheritance in Django works almost identically to the way normal
-class inheritance works in Python. The only decision you have to make
-is whether you want the parent models to be models in their own right
-(with their own database tables), or if the parents are just holders
-of common information that will only be visible through the child
-models.
+class inheritance works in Python, but the basics at the beginning of the page
+should still be followed. That means the base class should subclass
+:class:`django.db.models.Model`.
+
+The only decision you have to make is whether you want the parent models to be
+models in their own right (with their own database tables), or if the parents
+are just holders of common information that will only be visible through the
+child models.
 
 There are three styles of inheritance that are possible in Django.