Skip to content

Custom Time Zone

By default, each database uses the "Local" time zone.

hcl
database "db" {
  time_zone = "Local" # this is optional
}
database "db" {
  time_zone = "Local" # this is optional
}

To specify time zone:

hcl
database "db" {
  time_zone = "Africa/Lagos"
}
database "db" {
  time_zone = "Africa/Lagos"
}

Released under the Apache License.