Opened 11 years ago
Last modified 11 years ago
#23966 closed Cleanup/optimization
Doing pre-migrate database requirements — at Version 3
| Reported by: | Kenial Sookyum Lee | Owned by: | nobody |
|---|---|---|---|
| Component: | Database layer (models, ORM) | Version: | 1.7 |
| Severity: | Normal | Keywords: | migrate BaseDatabaseWrapper spatialite |
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description (last modified by )
Some database backends has special requirements when the database gets migrated.
For example, when using django.contrib.gis.db.backends.spatialite as a backend, the database file should be initialized at first time with this command: "SELECT InitSpatialMetaData();" Unless, it causes some error like https://code.djangoproject.com/ticket/20968.
I guess this would be appropriate: adding a before_migration() method to DatabaseWrapper, and letting database backends inherit it to do some jobs.
New workaround codes are added to django/contrib/gis/apps.py. (Thanks @aaugustin!)
Pull request link: https://github.com/django/django/pull/3695
Change History (3)
comment:1 by , 11 years ago
| Cc: | added |
|---|---|
| Summary: | Pre-migrate database requirements enhancement → Doing pre-migrate database requirements |
comment:2 by , 11 years ago
comment:3 by , 11 years ago
| Description: | modified (diff) |
|---|
Look at
django/contrib/postgres/apps.pyfor how to implement this.