db.migration.v0.9.0.2__agr_curation_api.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of agr_curation_api Show documentation
Show all versions of agr_curation_api Show documentation
This software is for using the curation api as a library
ALTER TABLE bulkloadfile
ADD datelastloaded timestamp without time zone;
ALTER TABLE bulkloadfile_aud
ADD datelastloaded timestamp without time zone;
UPDATE bulkloadfile
SET datelastloaded=subquery.dateloaded
FROM (
SELECT max(loadfinished) as dateloaded, bulkloadfile_id
FROM bulkloadfilehistory
GROUP BY bulkloadfile_id
) AS subquery
WHERE bulkloadfile.id = subquery.bulkloadfile_id;
UPDATE bulkloadfile
SET datelastloaded = dbdateupdated
WHERE datelastloaded is null;
UPDATE bulkloadfile
SET datelastloaded = dateupdated
WHERE datelastloaded is null;