migration = $factory; } public function getMigrations(Updater $updater) { return array( $this->migration->db->changeColumnType('session', 'id', 'VARCHAR( 255 ) NOT NULL') ); } public function doUpdate(Updater $updater) { $updater->executeMigrations(__FILE__, $this->getMigrations($updater)); } }