File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,11 @@ Django ORM
30
30
The Django ORM is the interface used by `Django <http://www.djangoproject.com >`_
31
31
to provide database access.
32
32
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.
33
+ It's based on the idea of `models <https://docs.djangoproject.com/en/1.3/#the-model-layer >`_,
34
+ an abstraction that makes it easier to manipulate data in Python.
35
35
36
36
The basics:
37
37
38
38
- Each model is a Python class that subclasses django.db.models.Model.
39
39
- Each attribute of the model represents a database field.
40
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
-
You can’t perform that action at this time.
0 commit comments