Django relation error when running make migrations
问题 Hey I am attempting to initialize a new database, but I am running into some issues setting up the migrations. The error I am getting appears to stem from setting up my forms. In a form I am using, I am creating a choice field as so: from django import forms from ..custom_admin import widgets, choices class MemberForm(forms.Form): provinces = forms.ChoiceField(label='Provinces', choices=choices.PROVINCE_CHOICES, required=True) where PROVINCE_CHOICES comes from here: from ..base.models import