add overrideable columns to a table with autoload=True

Issue #45 resolved
Mike Bayer repo owner created an issue

users want to be able to specify datatypes to columns that were reflected, i.e.:

t = Table('mytable', autoload=True,
   Column('col3', MyType)
)

where 'col3' overrides that column in the table as it was reflected. seems reasonable (and useful) !

Comments (1)

  1. Log in to comment