Kent wrote: > I did read 0.6 Migration document. > > I was using the contains_column method of ForeignKeyConstraint. > Apparently removed? > > AttributeError: 'ForeignKeyConstraint' object has no attribute > 'contains_column' > > Easy workaround or replacement call?
it has a "columns" collection where you can say "col in const.columns". > > -- > You received this message because you are subscribed to the Google Groups > "sqlalchemy" 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/sqlalchemy?hl=en. > > -- You received this message because you are subscribed to the Google Groups "sqlalchemy" 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/sqlalchemy?hl=en.
