Hello,
I just update from liquibase 3.6.3 to 3.8.5 and now starts complaining about a missing "Liquibase Pro license"
- Failed to execute goal org.liquibase:liquibase-maven-plugin:3.8.5:status (default-cli) on project docs-schema: Error setting up or running Liquibase: Validation Failed:
- 11 changes have validation failures
- Change Set ID: 4 Change Set Author: fsousa
- Change Type 'pro:createTrigger' is not allowed without a valid Liquibase Pro License.
- To purchase or renew a Liquibase Pro license key please contact lbprosales@datical.com or
- go to https://download.liquibase.org/liquibase-pro-pricing-details, pt/ipb/gdoc2/schema/categoria.xml::4::fsousa
I don't have an pro:createTrigger but I have a ora:createTrigger that comes from oracle org.liquibase.ext:liquibase-oracle:3.2
- <changeSet id="4" author="fsousa">
- <ora:createTrigger
- triggerName="categoria_id"
- afterBeforeInsteadOf="before"
- insert="true"
- tableName="categoria"
- forEachRow="true"
- procedure="
- BEGIN
- IF inserting THEN
- IF :new.categoria_id is null THEN
- SELECT categoria_id.nextval into :NEW.categoria_id from dual;
- END IF;
- END if;
- END;"/>
- </changeSet>
Am I missing something?
Thanks.