6 lines
152 B
MySQL
6 lines
152 B
MySQL
|
ALTER TABLE public."DMP"
|
||
|
ADD "PublishedDat" timestamp(6) with time zone
|
||
|
|
||
|
UPDATE public."DMP"
|
||
|
SET "PublishedDat" = "FinalizedDat"
|
||
|
where "isPublic" = True
|