I thought that the project stage command would generate XML changes when stage.generatedFormat was set to liquibase or xml. But no matter what I set it to, I always get sql.
Process being
SQL> alter table my_schema.my_table add some_column varchar2(10);
SQL> project export -o my_schema.my_table
SQL> !git commit -m “added column” src/database/my_schema/tables/my_table.sql
SQL> project stage
The resultant file is always dist/releases/next/my-branch/changes/my_schema/tables/my_table.sql with an alter table statement in it rather than an xml file with an xml change type.
How can I generate XML changes?