diff --git a/src/main/resources/db/changelog/206-hs-office-contact-migration.sql b/src/main/resources/db/changelog/206-hs-office-contact-migration.sql index 67309307..79cdd3bf 100644 --- a/src/main/resources/db/changelog/206-hs-office-contact-migration.sql +++ b/src/main/resources/db/changelog/206-hs-office-contact-migration.sql @@ -42,7 +42,7 @@ ALTER TABLE hs_office_contact_legacy_id CALL defineContext('schema-migration'); INSERT INTO hs_office_contact_legacy_id(uuid, contact_id) -SELECT uuid, nextVal('hs_office_contact_legacy_id_seq') FROM hs_office_contact; + SELECT uuid, nextVal('hs_office_contact_legacy_id_seq') FROM hs_office_contact; --/ @@ -66,8 +66,8 @@ end; $$; create trigger createContactLegacyIdMapping after insert on hs_office_contact - for each row -execute procedure insertContactLegacyIdMapping(); + for each row + execute procedure insertContactLegacyIdMapping(); --/ @@ -91,6 +91,6 @@ end; $$; create trigger removeContactLegacyIdMapping before delete on hs_office_contact - for each row -execute procedure deleteContactLegacyIdMapping(); + for each row + execute procedure deleteContactLegacyIdMapping(); --/ diff --git a/src/main/resources/db/changelog/226-hs-office-partner-migration.sql b/src/main/resources/db/changelog/226-hs-office-partner-migration.sql index abc18a88..f48e99d5 100644 --- a/src/main/resources/db/changelog/226-hs-office-partner-migration.sql +++ b/src/main/resources/db/changelog/226-hs-office-partner-migration.sql @@ -41,7 +41,7 @@ ALTER TABLE hs_office_partner_legacy_id CALL defineContext('schema-migration'); INSERT INTO hs_office_partner_legacy_id(uuid, bp_id) -SELECT uuid, nextVal('hs_office_partner_legacy_id_seq') FROM hs_office_partner; + SELECT uuid, nextVal('hs_office_partner_legacy_id_seq') FROM hs_office_partner; --/ diff --git a/src/main/resources/db/changelog/256-hs-office-sepamandate-migration.sql b/src/main/resources/db/changelog/256-hs-office-sepamandate-migration.sql index 5baaf783..fe43706c 100644 --- a/src/main/resources/db/changelog/256-hs-office-sepamandate-migration.sql +++ b/src/main/resources/db/changelog/256-hs-office-sepamandate-migration.sql @@ -43,7 +43,7 @@ ALTER TABLE hs_office_sepamandate_legacy_id CALL defineContext('schema-migration'); INSERT INTO hs_office_sepamandate_legacy_id(uuid, sepa_mandat_id) -SELECT uuid, nextVal('hs_office_sepamandate_legacy_id_seq') FROM hs_office_sepamandate; + SELECT uuid, nextVal('hs_office_sepamandate_legacy_id_seq') FROM hs_office_sepamandate; --/ @@ -67,8 +67,8 @@ end; $$; create trigger createSepaMandateLegacyIdMapping after insert on hs_office_sepamandate - for each row -execute procedure insertSepaMandateLegacyIdMapping(); + for each row + execute procedure insertSepaMandateLegacyIdMapping(); --/ @@ -92,6 +92,6 @@ end; $$; create trigger removeSepaMandateLegacyIdMapping before delete on hs_office_sepamandate - for each row -execute procedure deleteSepaMandateLegacyIdMapping(); + for each row + execute procedure deleteSepaMandateLegacyIdMapping(); --/ diff --git a/src/main/resources/db/changelog/316-hs-office-coopshares-migration.sql b/src/main/resources/db/changelog/316-hs-office-coopshares-migration.sql index 105c1ebe..dd64356e 100644 --- a/src/main/resources/db/changelog/316-hs-office-coopshares-migration.sql +++ b/src/main/resources/db/changelog/316-hs-office-coopshares-migration.sql @@ -42,7 +42,7 @@ ALTER TABLE hs_office_coopsharestransaction_legacy_id CALL defineContext('schema-migration'); INSERT INTO hs_office_coopsharestransaction_legacy_id(uuid, member_share_id) -SELECT uuid, nextVal('hs_office_coopsharestransaction_legacy_id_seq') FROM hs_office_coopsharestransaction; + SELECT uuid, nextVal('hs_office_coopsharestransaction_legacy_id_seq') FROM hs_office_coopsharestransaction; --/ @@ -66,8 +66,8 @@ end; $$; create trigger createCoopSharesLegacyIdMapping after insert on hs_office_coopsharestransaction - for each row -execute procedure insertCoopSharesLegacyIdMapping(); + for each row + execute procedure insertCoopSharesLegacyIdMapping(); --/ @@ -91,6 +91,6 @@ end; $$; create trigger removeCoopSharesLegacyIdMapping before delete on hs_office_coopsharestransaction - for each row -execute procedure deleteCoopSharesLegacyIdMapping(); + for each row + execute procedure deleteCoopSharesLegacyIdMapping(); --/ diff --git a/src/main/resources/db/changelog/326-hs-office-coopassets-migration.sql b/src/main/resources/db/changelog/326-hs-office-coopassets-migration.sql index ee432d73..8c346566 100644 --- a/src/main/resources/db/changelog/326-hs-office-coopassets-migration.sql +++ b/src/main/resources/db/changelog/326-hs-office-coopassets-migration.sql @@ -10,7 +10,7 @@ CREATE TABLE hs_office_coopassetstransaction_legacy_id ( uuid uuid NOT NULL REFERENCES hs_office_coopassetstransaction(uuid), - member_asstr_id integer NOT NULL + member_asset_id integer NOT NULL ); --// @@ -22,7 +22,7 @@ CREATE TABLE hs_office_coopassetstransaction_legacy_id CREATE SEQUENCE IF NOT EXISTS hs_office_coopassetstransaction_legacy_id_seq AS integer START 1000000000 - OWNED BY hs_office_coopassetstransaction_legacy_id.member_asstr_id; + OWNED BY hs_office_coopassetstransaction_legacy_id.member_asset_id; --// @@ -31,18 +31,18 @@ CREATE SEQUENCE IF NOT EXISTS hs_office_coopassetstransaction_legacy_id_seq -- ---------------------------------------------------------------------------- ALTER TABLE hs_office_coopassetstransaction_legacy_id - ALTER COLUMN member_asstr_id + ALTER COLUMN member_asset_id SET DEFAULT nextVal('hs_office_coopassetstransaction_legacy_id_seq'); - --/ + -- ============================================================================ --changeset hs-office-coopassets-MIGRATION-insert:1 endDelimiter:--// -- ---------------------------------------------------------------------------- CALL defineContext('schema-migration'); -INSERT INTO hs_office_coopassetstransaction_legacy_id(uuid, member_asstr_id) -SELECT uuid, nextVal('hs_office_coopassetstransaction_legacy_id_seq') FROM hs_office_coopassetstransaction; +INSERT INTO hs_office_coopassetstransaction_legacy_id(uuid, member_asset_id) + SELECT uuid, nextVal('hs_office_coopassetstransaction_legacy_id_seq') FROM hs_office_coopassetstransaction; --/ @@ -66,8 +66,8 @@ end; $$; create trigger createCoopAssetsLegacyIdMapping after insert on hs_office_coopassetstransaction - for each row -execute procedure insertCoopAssetsLegacyIdMapping(); + for each row + execute procedure insertCoopAssetsLegacyIdMapping(); --/ @@ -91,6 +91,6 @@ end; $$; create trigger removeCoopAssetsLegacyIdMapping before delete on hs_office_coopassetstransaction - for each row -execute procedure deleteCoopAssetsLegacyIdMapping(); + for each row + execute procedure deleteCoopAssetsLegacyIdMapping(); --/