scripts.db.update-1.2.0-x.mysql.legacy.post.update.ddl.sql Maven / Gradle / Ivy
alter table nflow_workflow modify status enum('created', 'executing', 'inProgress', 'finished', 'manual') not null;
update nflow_workflow set status = 'finished' where next_activation is null and status = 'inProgress';