changeset 4096:b65837b65479 historization_ng

Merged default
author Sascha Wilde <wilde@intevation.de>
date Thu, 25 Jul 2019 18:19:24 +0200
parents c1c6a375305f (current diff) 287dfd4dbdb6 (diff)
children 7711486efaba
files schema/gemma.sql schema/updates/1010/01.timezones-imports.sql schema/version.sql
diffstat 2 files changed, 3 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/schema/gemma.sql	Thu Jul 25 17:39:40 2019 +0200
+++ b/schema/gemma.sql	Thu Jul 25 18:19:24 2019 +0200
@@ -834,8 +834,8 @@
         id         int PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY,
         state      import_state NOT NULL DEFAULT 'queued',
         kind       varchar   NOT NULL,
-        enqueued   timestamp with time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
-        due        timestamp with time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
+        enqueued   timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
+        due        timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
         retry_wait interval
             CHECK(retry_wait IS NULL
                 OR retry_wait >= interval '0 microseconds'),
@@ -858,7 +858,7 @@
     CREATE TABLE import_logs (
         import_id int NOT NULL REFERENCES imports(id)
             ON DELETE CASCADE,
-        time timestamp with time zone NOT NULL DEFAULT now(),
+        time timestamp zone NOT NULL DEFAULT now(),
         kind log_type NOT NULL DEFAULT 'info',
         msg TEXT NOT NULL
     )
--- a/schema/updates/1010/01.timezones-imports.sql	Thu Jul 25 17:39:40 2019 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-ALTER TABLE import.imports     ALTER COLUMN enqueued TYPE timestamp with time zone;
-ALTER TABLE import.imports     ALTER COLUMN due      TYPE timestamp with time zone;
-ALTER TABLE import.import_logs ALTER COLUMN time     TYPE timestamp with time zone;