1
0
mirror of https://github.com/django/django.git synced 2025-01-12 19:37:06 +00:00

Clarified 'Django no longer requires a database' in docs/release_notes_0.95.txt

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3498 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-07-31 03:54:51 +00:00
parent c4652993a2
commit 1e330b6267

View File

@ -66,7 +66,11 @@ The new features and changes introduced in 0.95 include:
* We've made it easier to add custom table-level functions to models,
through a new "Manager" API.
* It's now possible to use Django without a database.
* It's now possible to use Django without a database. This simply means
that the framework no longer requires you to have a working database set
up just to serve dynamic pages. In other words, you can just use
URLconfs/views on their own. Previously, the framework required that a
database be configured, regardless of whether you actually used it.
* It's now more explicit and natural to override save() and delete()
methods on models, rather than needing to hook into the pre_save() and