[Liquibase-user] Passing Change Log Parameters from ANT

2009-04-07 Thread Ralf Laue
Hello, We want to use change log parameters for the Update task. The chanelog contains something like: modifyColumn tableName=${table.name} From the shell, passing parameters to the changelog works with something like: java -cp liquibase-1.9.0.jar liquibase.commandline.Main -Dtable.name=xxx

Re: [Liquibase-user] Passing Change Log Parameters from ANT

2009-04-07 Thread Voxland, Nathan
There is a nested changeLogProperty tag you can use. Try: updateDatabase changeLogFile=${persistency.option.db.changelog.file} driver=${persistency.option.database.driver} url=${persistency.option.database.url}