(sender, connection, **kwargs)
| 29 | from django.db.backends.signals import connection_created |
| 30 | |
| 31 | def _force_utc0(sender, connection, **kwargs): |
| 32 | connection.cursor().execute("SET TIME ZONE 'UTC0'") |
| 33 | |
| 34 | connection_created.connect(_force_utc0, dispatch_uid='force_db_utc0') |
| 35 |