Options.required_db_features
New in Django 1.9.
List of database features that the current connection should have so that the model is considered during the migration phase. For example, if you set this list to ['gis_enabled']
, the model will only be synchronized on GIS-enabled databases. It’s also useful to skip some models when testing with several database backends. Avoid relations between models that may or may not be created as the ORM doesn’t handle this.
Please login to continue.