On Thu, Oct 28, 2010 at 9:12 AM, Narciso Oceguera wrote:
> Hi, everyone.
>
> As documentation said, I just added the lines:
>
> class USCitizen(models.Model):
> # ...
>
> class Meta:
> permissions = (
> ("can_drive", "Can drive"),
> ("can_vote", "Can vote in elections
Do you have South in your INSTALLED_APPS? I've noticed it doesn't fire
the appropriate syncdb signals.
--
Michael
On Fri, 2010-10-29 at 08:46 +0800, Russell Keith-Magee wrote:
> On Thu, Oct 28, 2010 at 8:12 PM, Narciso Oceguera wrote:
> > Hi, everyone.
> >
> > As documentation said, I just ad
On Thu, Oct 28, 2010 at 8:12 PM, Narciso Oceguera wrote:
> Hi, everyone.
>
> As documentation said, I just added the lines:
>
> class USCitizen(models.Model):
> # ...
>
> class Meta:
> permissions = (
> ("can_drive", "Can drive"),
> ("can_vote", "Can vote in elections
Hi, everyone.
As documentation said, I just added the lines:
class USCitizen(models.Model):
# ...
class Meta:
permissions = (
("can_drive", "Can drive"),
("can_vote", "Can vote in elections"),
("can_drink", "Can drink alcohol"),
)
But after