К примеру есть
class Country(models.Model): country_name = models.CharField('Country', max_length = 30)
Спасибо.
П.С. Choices проверял - он ничего в базу во время миграции не сохраняет.
class Country(models.Model): country_name = models.CharField('Country', max_length = 30)
Deprecated since version 1.7:Как я понял, лавочку с автозагрузкой фикстур прикрывают. Нужно использовать Data Migration. В любом случае спасибо, что направили на нужную часть документации.
If an application uses migrations, there is no automatic loading of fixtures. Since migrations will be required for applications in Django 1.9, this behavior is considered deprecated. If you want to load initial data for an app, consider doing it in a data migration.