Here is my model.
Poll(models.Model): title = models.CharField(max_length=1024) MY_VAR = [\'my_class_level_attribute\'] # I want to access this
You should be able to import the model
from my_app.models import Poll
If you do this, you shouldn't delete the Poll model or the MY_VAR attribute, otherwise your migrations will stop working.
Poll
MY_VAR