Array PostgreSQL

postgres=# CREATE TABLE t (
postgres(#    squares   integer[3][3]
postgres(# );
CREATE TABLE
postgres=#
postgres=# \d t;
        Table "public.t"
 Column  |   Type    | Modifiers
---------+-----------+-----------
 squares | integer[] |
postgres=#
postgres=# drop table t;
DROP TABLE
postgres=#