Hi.

I want to add a set of common columns for a set of tables. For
example, given tables

personal_profile(name, nickname, fav_color ...)
professional_profile(work, location, designation ...)

I want to add auditing columns to both of these, like so -

personal_profile(*created_on*, *updated_on*, name, nickname, fav_color ...)
professional_profile(*created_on*, *updated_on*, work, location,
designation ...)

It would be best if the auditing columns could be defined in one
place, and then added to all the tables individually. I believe the
solution may have more to do with Python than with SQLAlchemy itself.

Thanks.

-- 
sss
http://sandesh247.googlepages.com

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to