Hi ,
I am looking for something similar. Just need to understand how to call a sql script from within the rollback tag.
This is my sql file which creates a procedure
--liquibase formatted sql
--changeset sr:3 runOnChange:true splitStatements:false
create or replace procedure test
as
begin
dbms_output.put_line('test');
dbms_output.put_line('test1');
end;
###### This is where I would like to call a script which recreates the old procedure
--rollback
I am looking for something similar. Just need to understand how to call a sql script from within the rollback tag.
This is my sql file which creates a procedure
--liquibase formatted sql
--changeset sr:3 runOnChange:true splitStatements:false
create or replace procedure test
as
begin
dbms_output.put_line('test');
dbms_output.put_line('test1');
end;
###### This is where I would like to call a script which recreates the old procedure
--rollback