--liquibase formatted sql -- TODO: These changesets are just for the external remote views to simulate the legacy tables. -- Once we don't need the external remote views anymore, create revert changesets. -- ============================================================================ --changeset hs-office-contact-MIGRATION-mapping:1 endDelimiter:--// -- ---------------------------------------------------------------------------- CREATE TABLE hs_office_contact_legacy_id ( uuid uuid NOT NULL REFERENCES hs_office_contact(uuid), contact_id integer NOT NULL ); --// -- ============================================================================ --changeset hs-office-contact-MIGRATION-sequence:1 endDelimiter:--// -- ---------------------------------------------------------------------------- CREATE SEQUENCE IF NOT EXISTS hs_office_contact_legacy_id_seq AS integer START 1000000000 OWNED BY hs_office_contact_legacy_id.contact_id; --// -- ============================================================================ --changeset hs-office-contact-MIGRATION-default:1 endDelimiter:--// -- ---------------------------------------------------------------------------- ALTER TABLE hs_office_contact_legacy_id ALTER COLUMN contact_id SET DEFAULT nextVal('hs_office_contact_legacy_id_seq'); --/ -- ============================================================================ --changeset hs-office-contact-MIGRATION-insert:1 endDelimiter:--// -- ---------------------------------------------------------------------------- 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; --/ -- ============================================================================ --changeset hs-office-contact-MIGRATION-insert-trigger:1 endDelimiter:--// -- ---------------------------------------------------------------------------- create or replace function insertContactLegacyIdMapping() returns trigger language plpgsql strict as $$ begin if TG_OP <> 'INSERT' then raise exception 'invalid usage of trigger'; end if; INSERT INTO hs_office_contact_legacy_id VALUES (NEW.uuid, nextVal('hs_office_contact_legacy_id_seq')); return NEW; end; $$; create trigger createContactLegacyIdMapping after insert on hs_office_contact for each row execute procedure insertContactLegacyIdMapping(); --/ -- ============================================================================ --changeset hs-office-contact-MIGRATION-delete-trigger:1 endDelimiter:--// -- ---------------------------------------------------------------------------- create or replace function deleteContactLegacyIdMapping() returns trigger language plpgsql strict as $$ begin if TG_OP <> 'DELETE' then raise exception 'invalid usage of trigger'; end if; DELETE FROM hs_office_contact_legacy_id WHERE uuid = OLD.uuid; return OLD; end; $$; create trigger removeContactLegacyIdMapping before delete on hs_office_contact for each row execute procedure deleteContactLegacyIdMapping(); --/