However, I did just find the ERXMigrator docs, and I'm not doing the following and I'm guessing I need to?...
Because of complications with database locking, the system will not autocreate tables and per-model rows for you, so if you are using JDBC migration, you should create a table named _DBUpdater with the following (approximately) create statement:
create table _dbupdater (
modelname varchar(100) not null,
version integer not null,
updatelock integer not null,
lockowner varchar(100)
)
I tried it:
log4j.logger.er.extensions.migration.ERXMigrator=DEBUG
But I don't see any debug statements from ERXMigrator.