Hi there,
I am using ant liquibase to generate the sql script files we need to manually run in prod and uat. Our database is oracle 11g.
The problem I have is that the schema name is hardcoded in each line of the generated script
eg:
CREATE SEQUENCE UAT.hibernate_sequence;
Is it possible to tell liquibase’s ant task to remove the schema from the script (like )?
CREATE SEQUENCE hibernate_sequence;
Thanks
Fernando