From 93f68642e96fe52f8779c5a8d22157668981a65b Mon Sep 17 00:00:00 2001 From: Tuure Korhonen Date: Fri, 4 Nov 2022 11:07:27 +0200 Subject: [PATCH] Timestamp example time zone --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b4f8f7..7ae8a0f 100644 --- a/README.md +++ b/README.md @@ -137,5 +137,5 @@ CREATE TABLE audit_logs ( Insert test data row into table: ```sql INSERT INTO audit_logs(id, is_sent, message, created_at) -VALUES (1, false, '{"audit_event": {"date_time": "2022-10-13T12:34:56.000Z"}}', now()); +VALUES (1, false, '{"audit_event": {"date_time": "2022-10-13T12:34:56.000+0300"}}', now()); ```