Re: Django 1.5.4 sql generation just generates one model field (PostgreSQL)

2014-04-03 Thread Jorge Arevalo
Absolutely! It's working now. What a stupid mistake... Many thanks! On Friday, April 4, 2014 12:34:38 AM UTC+2, François Schiettecatte wrote: > > You have a comma at the end of this: > > bar = models.IntegerField(), > > Could that be the issue? > > François > > On Apr 3, 2014, at 6:24

Re: Django 1.5.4 sql generation just generates one model field (PostgreSQL)

2014-04-03 Thread François Schiettecatte
You have a comma at the end of this: bar = models.IntegerField(), Could that be the issue? François On Apr 3, 2014, at 6:24 PM, Jorge Arevalo wrote: > Hello, > > I have this dummy models.py > > from django.db import models > > class Foo(models.Model): > bar = models.IntegerFiel