#440: tg-admin sql create fails on joins with SQLObject R1530
-----------------------+----------------------------------------------------
Reporter: Joost | Owner: anonymous
Type: defect | Status: new
Priority: normal | Milestone:
Component: SQLObject | Version:
Severity: normal | Resolution:
Keywords: |
-----------------------+----------------------------------------------------
Comment (by anonymous):
I am also seeing this with the .9a2 release that came out recently.
Specifcally, here is my model:
{{{
class Item(SQLObject):
name = StringCol(alternateID = True)
description = StringCol()
link = StringCol()
categories = RelatedJoin('Category')
class Category(SQLObject):
name = StringCol(alternateID = True)
items = RelatedJoin('Item')
}}}
--
Ticket URL: <http://trac.turbogears.org/turbogears/ticket/440>
TurboGears <http://www.turbogears.org/>
TurboGears front-to-back web development
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears Tickets" 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-tickets
-~----------~----~----~----~------~----~------~--~---