In the doc, there is no explanation to deploy the solution in a particular schema.
It's possible to precise the schema :+1: example
CREATE TRIGGER versionning_trigger
BEFORE INSERT OR UPDATE OR DELETE ON subscriptions
FOR EACH ROW EXECUTE PROCEDURE versioning(
'sys_period', 'nomenclature.subscriptions_history', false
);
Hello,
In the doc, there is no explanation to deploy the solution in a particular schema. It's possible to precise the schema :+1: example
CREATE TRIGGER versionning_trigger BEFORE INSERT OR UPDATE OR DELETE ON subscriptions FOR EACH ROW EXECUTE PROCEDURE versioning( 'sys_period', 'nomenclature.subscriptions_history', false );
Olivier