From adad990fc7fc14f226c5c1163b4e085bcc58760d Mon Sep 17 00:00:00 2001 From: David Fetter Date: Wed, 17 May 2023 09:17:50 -0700 Subject: [PATCH] Changed timestamp (yech!) to timestamptz --- doc/usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/usage.md b/doc/usage.md index a2712f26c..488a447d1 100644 --- a/doc/usage.md +++ b/doc/usage.md @@ -18,7 +18,7 @@ CREATE TABLE blog_post title text NOT NULL, body text NOT NULL, author text NOT NULL, - published_at timestamp NOT NULL, + published_at timestamptz NOT NULL DEFAULT CURRENT_TIMESTAMP, views bigint NOT NULL, PRIMARY KEY(id) ) USING orioledb;