[sqlalchemy] short question on Table

2011-04-16 Thread Lars
Hi all, Does anyone know how I can add a Column to an existing not yet mapped Table? Cheers, Lars -- 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,

[sqlalchemy] short question on Table

2011-04-16 Thread Lars
Hi all, Does anyone know how I can add a Column to an existing not yet mapped Table? Cheers, Lars -- 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,

Re: [sqlalchemy] short question on Table

2011-04-16 Thread Michael Trier
Does anyone know how I can add a Column to an existing not yet mapped Table? To add a column use append_column: http://www.sqlalchemy.org/docs/core/schema.html#sqlalchemy.schema.Table.append_column Note that doesn't do anything database schema wise for you. -- Michael Trier