You can’t do it from within Ignition. You need to use a database column that understands timezones and will trigger the conversion for you. In PostgreSQL, you would simple use the “Timestamp with Timezone” datatype. It stores everything in UTC and converts to/from that in every query based on the connection properties. If your database doesn’t have a column type that’ll work for you, you might need to create a view in the database that incorporates the conversion, and point your DB pens at that view instead of the table.