index.txt 494 B

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