diff --git a/resources/migrations/000_migrations.yaml b/resources/migrations/000_migrations.yaml index bd0795c090b07ffba6ed8418d43b6da27cdb70e7..3f04701242d1551bf12608097611f568785ea6ff 100644 --- a/resources/migrations/000_migrations.yaml +++ b/resources/migrations/000_migrations.yaml @@ -3828,4 +3828,16 @@ databaseChangeLog: - dropForeignKeyConstraint: baseTableName: raw_table constraintName: fk_rawtable_ref_database - remarks: 'This FK prevents deleting databases even though RAW_TABLE is no longer used. The table is still around to support downgrades, but the FK reference is no longer needed.' \ No newline at end of file + remarks: 'This FK prevents deleting databases even though RAW_TABLE is no longer used. The table is still around to support downgrades, but the FK reference is no longer needed.' +# Changeset 65 was accidentally released in 0.26.0.RC2. The changeset has been removed from the migrations list so that +# users that haven't ran the migration (i.e. they didn't run 0.26.0.RC2) won't waste time running it just to have it +# reversed. For 0.26.0.RC2 users, the below changeset will remove those tables if they are present + - changeSet: + id: 66 + author: senior + comment: 'Added 0.26.0' + changes: + - sql: + sql: drop table if exists computation_job cascade + - sql: + sql: drop table if exists computation_job_result cascade