[sqlalchemy] Re: Doubts on relation with cascade delete by backend

2009-07-25 Thread Alessandro Dentella
On Thu, Jul 23, 2009 at 02:48:12PM -0400, Michael Bayer wrote: add passive_deletes = True Thanks and sorry for the noise on such trivial question, present in the faq... , I've already used it and... forgot! sandro --~--~-~--~~~---~--~~ You received this

[sqlalchemy] Re: Doubts on relation with cascade delete by backend

2009-07-23 Thread Michael Bayer
add passive_deletes = True sandro dentella wrote: Hi, I have a simple setup that may be summarized as: class User(Base): __tablename__ = 'user' name = Column(String(20), primary_key=True) class Mail(Base): __tablename__ = 'address' mail =