-- This is an example table.
CREATETABLEexample (
a text,
b integer,
c uuid NOTNULL,
d date,
e double precision,
f text[],
g integer[],
h geometry(Geometry,4326),
-- Just to be annoying:
i public.geometry(Geometry,3857),
j smallint,
k timestamp without time zone
)