Using phinx version ``0.16.0``. Using the mysql adapter. Code example: ```php $table = $this->table('trades'); $table ->renameColumn('uid_a', 'initiatorUserId') ->update(); ``` The resulting SQL command is: ```sql ALTER TABLE `trades` CHANGE COLUMN `uid_a` `initiatorUserId` int NOT NULLAUTO_INCREMENT COMMENT '' ``` With the issue of course being (lack of space between NULL and AUTO_INCREMENT) ```sql NOT NULLAUTO_INCREMENT ```