getConnection()); } /** * @return array */ public function typesProvider() { return [ ['integer UNSIGNED', Schema::TYPE_INTEGER, null, [ ['unsigned'], ]], ['integer(10) UNSIGNED', Schema::TYPE_INTEGER, 10, [ ['unsigned'], ]], ['integer(10) COMMENT \'test\'', Schema::TYPE_INTEGER, 10, [ ['comment', 'test'], ]], ]; } }