argos/dmp-db-scema/updates/01/05_DMPPublishedDat.sql

6 lines
152 B
MySQL
Raw Normal View History

ALTER TABLE public."DMP"
2020-04-29 13:03:19 +02:00
ADD "PublishedAt" timestamp(6) WITH time zone;
UPDATE public."DMP"
SET "PublishedAt" = "FinalizedDat"
2020-04-29 13:03:19 +02:00
where "isPublic" = True;