timestampWithTimezone constant

CustomSqlType<PgDateTime> const timestampWithTimezone

The timestamp with time zone type in Postgres.

Implementation

static const CustomSqlType<PgDateTime> timestampWithTimezone = DateType(
  pg.Type.timestampWithTimezone,
  'timestamp with time zone',
  PgDateTime.new,
);