You can use:
$model->getTableSchema()->getColumn('attr')
or
$model->getTableSchema()->columns['attr']
and then read dbType , phpType or type , according to what ... the type of type you are looking for.
For instance:
$model->getTableSchema()->columns['attr']->type
source share