index.txt 407 B

123456789101112131415161718192021
  1. Models and databases
  2. ====================
  3. .. module:: django.db
  4. A model is the single, definitive source of data about your data. It contains
  5. the essential fields and behaviors of the data you're storing. Generally, each
  6. model maps to a single database table.
  7. .. toctree::
  8. :maxdepth: 1
  9. models
  10. queries
  11. aggregation
  12. managers
  13. sql
  14. transactions
  15. multi-db
  16. tablespaces
  17. optimization