> ## Documentation Index
> Fetch the complete documentation index at: https://help.elationhealth.com/llms.txt
> Use this file to discover all available pages before exploring further.

# What Timezone is my data in?

### What Timezone is the Hosted Database in?

The Timezone your data is in will be in Pacific Time with the exception of the **appt\_time** column in the *[appointment table](https://dbdocs.io/hosteddb_support/hosted_database_snowflake?table=APPOINTMENT\&schema=public\&view=table_structure)*

### Can we convert timezones to our time?

You can use the [convert\_timezone](https://docs.snowflake.com/en/sql-reference/functions/convert_timezone) function however this will not persist in your database and will need to be ran every time.

### Do you adjust date/times for daylight savings time?

Yes we do! Your timestamps will change with daylight savings

To verify this you can run:

<CodeGroup>
  ```mysql mysql theme={null}
  select creation_time as PST,
  convert_timezone(your_time_zone, creation_time) as your_time_zone
  from appointment
  where creation_time is not null
  order by creation_time desc;
  ```
</CodeGroup>

You will see anything created after Daylight Savings time will be adjusted.
