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

db.changelog.20201203-cleanup-event-and-paused-orhpans.yml Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
databaseChangeLog:
- changeSet:
    id: cleanup-event-and-paused-orphans
    author: lpollo
    changes:
    - sql:
        sql: >
          delete from event
            where scope = 'APPLICATION'
            and not exists (select 1 from delivery_config where application = event.ref)
    - sql:
        sql: >
          delete from event
            where scope = 'RESOURCE'
            and not exists (select 1 from resource where uid = event.ref)
    - sql:
        sql: >
          delete from paused
            where scope = 'APPLICATION'
            and not exists (select 1 from delivery_config where application = paused.name)
    - sql:
        sql: >
          delete from paused
            where scope = 'RESOURCE'
            and not exists (select 1 from resource where id = paused.name)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy