We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8203c10 + 5156f90 commit d030ab8Copy full SHA for d030ab8
docs/scenarios/db.rst
@@ -33,3 +33,11 @@ to provide database access.
33
It's based on the idea of `models <https://docs.djangoproject.com/en/1.3/#the-model-layer>`_, an abstraction that makes it easier to
34
manipulate data in Python.
35
36
+The basics:
37
+
38
+- Each model is a Python class that subclasses django.db.models.Model.
39
+- Each attribute of the model represents a database field.
40
+- Django gives you an automatically-generated database-access API; see `Making queries <https://docs.djangoproject.com/en/dev/topics/db/queries/>`__.
41
+to provide database access.
42
43
0 commit comments