Hmm. Well maybe my last advice was a dead end.
You have a column in your object named "model". That would confuse
the heck out of me. Can you rename it something like vehicle_model?
I'm speculating, but maybe that's related to your problem.
On Feb 21, 5:10 pm, jeff <[EMAIL PROTECTED]> wrote:
> I have checked, here is my model definition:
>
> class listing(SQLObject):
> user = ForeignKey('User')
> category = ForeignKey('category')
> year = IntCol(default=0)
> make = UnicodeCol(length=20,default="")
> model = UnicodeCol(length=100,default="")
> price = CurrencyCol(default=0.0)
> owned = IntCol(default=0)
> entrydate = DateCol(default=datetime.now)
> expirydate = DateCol(default=getexpiry)
> longdesc = UnicodeCol(default="")
> status = IntCol(default=0)
> images = MultipleJoin('image')
> cover = ForeignKey('image')
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---