View Source Postgrex.Interval (Postgrex v0.16.5)

Struct for PostgreSQL interval.

fields

Fields

  • months
  • days
  • secs
  • microsecs

Link to this section Summary

Link to this section Types

@type t() :: %Postgrex.Interval{
  days: integer(),
  microsecs: integer(),
  months: integer(),
  secs: integer()
}

Link to this section Functions