All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scripts.db.update-5.6.0-x.h2.update.ddl.sql Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
alter table nflow_workflow add started timestamp;
alter table nflow_archive_workflow add started timestamp;

update nflow_workflow w set
  started=(select min(execution_start) from nflow_workflow_action a where a.workflow_id = w.id group by a.workflow_id),
  modified=w.modified;

update nflow_archive_workflow w set
  started=(select min(execution_start) from nflow_archive_workflow_action a where a.workflow_id = w.id group by a.workflow_id),
  modified=w.modified;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy