]> git.xonotic.org Git - xonotic/xonstatdb.git/blobdiff - tables/db_version.tab
Merge branch 'master' of github.com:antzucaro/xonstatdb
[xonotic/xonstatdb.git] / tables / db_version.tab
index f67ce20a4044f81f1797833e513b3c333a84b203..967fcc6c7a34b61b2d7ccfff99718cf2c6c59bcb 100644 (file)
@@ -2,7 +2,7 @@ CREATE TABLE xonstat.db_version
 (
   "version" character varying(15) NOT NULL,
   descr character varying(100) NOT NULL,
-  create_dt timestamp with time zone NOT NULL DEFAULT now(),
+  create_dt timestamp without time zone NOT NULL DEFAULT (current_timestamp at time zone 'UTC'),
   CONSTRAINT db_version_pk PRIMARY KEY (version)
 )
 WITH (