Django: DatabaseError column does not exist
- by Rosarch
I'm having a problem with Django 1.2.4.
Here is a model:
class Foo(models.Model):
# ...
ftw = models.CharField(blank=True)
bar = models.ForeignKey(Bar)
Right after flushing the database, I use the shell:
Python 2.6.6 (r266:84292, Sep 15 2010, 15:52:39)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for…