diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt
index 12372dd..eed12ae 100644
|
a
|
b
|
Arguments sent with this signal:
|
| 438 | 438 | context |
| 439 | 439 | The :class:`~django.template.Context` with which the template was |
| 440 | 440 | rendered. |
| | 441 | |
| | 442 | Database Wrappers |
| | 443 | ================= |
| | 444 | |
| | 445 | .. module:: django.db.backends |
| | 446 | :synopsis: Core signals sent by the database wrapper. |
| | 447 | |
| | 448 | Signals sent by the database wrapper when a database connection is |
| | 449 | initiated. |
| | 450 | |
| | 451 | connection_created |
| | 452 | ------------------ |
| | 453 | |
| | 454 | .. data:: django.db.backends.signals.connection_created |
| | 455 | :module: |
| | 456 | |
| | 457 | Sent when the database wrapper makes the initial connection to the |
| | 458 | database. This is particularly useful if you'd like to send any post |
| | 459 | connection commands to the SQL backend. |
| | 460 | |
| | 461 | Arguments sent with this signal: |
| | 462 | |
| | 463 | sender |
| | 464 | The database wrapper class -- i.e. |
| | 465 | :class: `django.db.backends.postgresql_psycopg2.DatabaseWrapper` or |
| | 466 | :class: `django.db.backends.mysql.DatabaseWrapper`, etc. |
| | 467 | |
| | 468 | |