All,
I have a set related models:
class Foo(models.Model):
fooName = models.CharField()
bars = models.ManyToManyField("Bar")
class Bar(models.Model):
barName = models.CharField()
When I create a new one, I would like for it to have a default set of data. This is pretty easy to do for normal fields. But I'm not sure what to do for relationship fields. Let's pretend that I want every foo to be initialized with the name "I am a foo" and a set of three bars, each with specific names (say, "I am bar one," "I am bar two," and "I am bar three.").
def Initialize(self)
self.fooName = "I am a foo"
self.bars = ?!?
I'm just not sure how to go about this. Any suggestions?