Definition
/**
* Parse a PostgreSQL type string into a ColumnType.
*
* Handles all PostgreSQL type syntax including precision, arrays, and schema-qualified types.
*
* @param string $typeName PostgreSQL type string (e.g., 'integer', 'character varying(255)', 'text[]')
*/
column_type_from_string(string $typeName) : ColumnType