I've looked and looked, but can't find any guidance on this. I want a
program that, the first time it's run, creates its tables. I'm
guessing that I need something like this:
try:
user_table = Table('users', metadata, autoload=True)
except NoSuchTableError:
user_table = Table('users', metadata, Column('userid', String(8)))
OTOH, I can't find any examples of anyone doing things this way. Is
there another way that I'm missing? Thanks!
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---