Hi, I have the following changeLog.xml:
- <?xml version="1.0" encoding="UTF-8"?>
- <databaseChangeLog
- xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
- xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.3.xsd
- http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
This is what happens when I run an updateSQL on it:
$ ./liquibase updateSQL
Unexpected error running Liquibase: cvc-complex-type.3.2.2: Attribute ‘onUpdateSQL’ is not allowed to appear in element ‘preConditions’.
What’s wrong?