Okay, I have been reading other django inheritance questions and I can't find anything to help. I may just have an understanding issue about how inheritance works. But here is my issue. To start, I have two base models that I'd like all of my other models to inherit from. Base Model just contains some useful methods for all of my models. The second is the start of an account specific object.

class BaseModel(models.Model):

# A couple of methods that all my models need to have. No fields. 

class AccountModel(models.Model):
    ''' A base model for items related to a specific account'''

    account = models.ForeignKey(Account)

    def save(self, request, *args, **kwargs):
        self.account = request.session['account']
        super(AccountModel, self).save(*args, **kwargs)

Then I have three models:

class Keyword(AccountModel) :
    keyword = models.CharField(max_length=300)
    #other fields, none required...

class Project(AccountModel) :
    project_name = models.CharField(max_length=200,verbose_name="Project Name")
    #other fields..

class KeywordTarget(BaseModel):
    keyword = models.ForeignKey(Keyword)
    url = models.URLField(null=True,blank=True)
    project = models.ForeignKey(Project)

But when I try to create a new Keyword, I get this error:

ValueError: Cannot assign "'something'": "Keyword.keyword" must be a "Keyword" instance.

when I do:

kw = Keyword(keyword = "something")

Where am I going wrong?

(Also, please don't tell me I should be using a ManyToMany through unless it solves the problem at hand)

link|improve this question

79% accept rate
you are probably doing something wrong, from the error it looks like that Keyword.keyword is a foreignkey not a CharField as defined in the code you pasted. – Andrea Zonca Mar 1 '11 at 23:54
Yes... I am probably doing something wrong. It does look like that, but the code I posted is what is in there. Which is why I think it is an inheritance thing. – lovefaithswing Mar 2 '11 at 0:00
feedback

1 Answer

up vote 2 down vote accepted

It looks like both BaseModel and Account model will be abstract, so you should specify that in the models' Meta objects like:

class BaseModel(models.Model):
    ...

    class Meta:
        abstract=True

(see http://docs.djangoproject.com/en/dev/topics/db/models/#abstract-base-classes)

I'm guessing that without that, you're ending up with interference between the inheriting models.

link|improve this answer
This worked great! – lovefaithswing Mar 2 '11 at 0:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.