Re: Inheriting from Poll(meta.Model)

2005-08-31 Thread [EMAIL PROTECTED]
Ok, I guess that my problem is two fold. The first is that the generated SQL tried to create two tables called polls_polls. And I see now that adding class META: module_name = 'tigger' to the Tigger class resolves that issue. My second issue was in thinking that the table generated f

Re: Inheriting from Poll(meta.Model)

2005-08-31 Thread Adrian Holovaty
On 8/31/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > class Tigger(Poll): > bounce = meta.CharField(maxlength=200) > > def __repr__(self): > return self.bounce > [...] > This isn't quite right ;-) Anyone else come across this useage pattern? > Are there any ways to have Djang