Arrays CREATE TABLE places ( name text not null, tags text[] ); PostgreSQL arrays are materialized as Go slices. Currently, only one-dimensional arrays are supported. package db type Place struct { Name string Tags []string }