the following code ```SQL CREATE TYPE type_foo AS ( x integer, y integer ); CREATE TABLE tdd.solution ( solution_id uuid DEFAULT uuid_generate_v4() PRIMARY KEY, bar foo ); ``` results in the following error: ``` unknown PostgreSQL type: type_foo ```