As part of a sanity check I want to check if each column comes with a default value or function. When I create the table I can access this information through
default
default is the Python-level default. SQLAlchemy reflection puts the database column default in server_default:
server_default
for c in table_reloaded.columns: print c.name, repr(c.server_default)