---
title: "Models and databases"
version: 5.0
locale: es
source: https://docs.djangoproject.com/es/5.0/topics/db/
canonical: https://djangodocs.dev/es/5.0/topics/db/
---
# Models and databases

A model is the single, definitive source of information about your data. It
contains the essential fields and behaviors of the data you’re storing.
Generally, each model maps to a single database table.

- [Modelos](/es/5.0/topics/db/models/)
- [Making queries](/es/5.0/topics/db/queries/)
- [Agregación](/es/5.0/topics/db/aggregation/)
- [Buscar](/es/5.0/topics/db/search/)
- [Gestores](/es/5.0/topics/db/managers/)
- [Performing raw SQL queries](/es/5.0/topics/db/sql/)
- [Database transactions](/es/5.0/topics/db/transactions/)
- [Multiple databases](/es/5.0/topics/db/multi-db/)
- [Tablespaces](/es/5.0/topics/db/tablespaces/)
- [Database access optimization](/es/5.0/topics/db/optimization/)
- [Database instrumentation](/es/5.0/topics/db/instrumentation/)
- [Fixtures](/es/5.0/topics/db/fixtures/)
- [Examples of model relationship API usage](/es/5.0/topics/db/examples/)
