From 44b164c314aaf7e0e949e24757372e4bcad69f41 Mon Sep 17 00:00:00 2001 From: george Date: Tue, 17 Jun 2014 13:45:30 -0600 Subject: [PATCH] Wrapped and removed extra text from scenarios/db. --- docs/scenarios/db.rst | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/scenarios/db.rst b/docs/scenarios/db.rst index 252d9d7..0d30c3e 100644 --- a/docs/scenarios/db.rst +++ b/docs/scenarios/db.rst @@ -30,14 +30,11 @@ Django ORM The Django ORM is the interface used by `Django `_ to provide database access. -It's based on the idea of `models `_, an abstraction that makes it easier to -manipulate data in Python. +It's based on the idea of `models `_, +an abstraction that makes it easier to manipulate data in Python. The basics: - Each model is a Python class that subclasses django.db.models.Model. - Each attribute of the model represents a database field. - Django gives you an automatically-generated database-access API; see `Making queries `__. -to provide database access. - -