2009/11/17 César Fernández Rodríguez <[email protected]>: > > Hi, i'm trying to gave the user of my program the ability of adding new > columns, giving a name and selecting the type from a set of values, for > example Unicode (with a custom length), UnicodeText, Integer or Boolean.
Out of the box, SQLAlchemy does not support any form of table alteration once they are created. You might want to look at sqlalchemy-migrate which adds such functionality (if the underlying database supports it). -- Gaëtan de Menten http://openhex.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SQLElixir" 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/sqlelixir?hl=en -~----------~----~----~----~------~----~------~--~---
