Hi,
Is it possible to use ant’s sequantial along with liquibase’s update?
I am keeping sql file’s names in file, e.g
-
filenames=first,second,third
Hi,
Is it possible to use ant’s sequantial along with liquibase’s update?
I am keeping sql file’s names in file, e.g
There is an includeAll tag that lets you run all files in a folder (http://www.liquibase.org/manual/includeall). Otherwise, there is no way to use ant’s sequential tags or any other looping tags within a changelog file.
You would be able to create a custom change that could loop through folders and read statements to execute.
Nathan