I was looking at https://github.com/db-migrate/node-db-migrate/blob/master/lib/driver/pg.js#L246 and was sad to see that it's impossible to alter an existing column's types in postgres. I'm thinking, check if `type` is in `columnSpec` to trigger: ``` var sql = util.format('ALTER TABLE "%s" ALTER COLUMN "%s" TYPE %s', tableName, columnName, columnType); ``` Fy.