simplify this changelog?

do you see a way to make this more concise?  specifically the check for the NDB engine.

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <databaseChangeLog xmlns=“http://www.liquibase.org/xml/ns/dbchangelog

Would you be able to change the default engine on your various servers to have either MyISAM or ndbcluster as the default engine? Or is that choice specific to this table?


If you can configure liquibase at the beginning to know the engine, you could pass it in as a changelog parameter and replace the second changeSets with a .


A final option, would be a custom change (liquibase.org/extensions) that would let you say <changeSet…> and wrap all the custom logic into your custom change .


Nathan