Re : Liquibase generateChangeLog Failed:...
java -cp lib/snakeyaml-1.12.jar;liquibase.jar liquibase.integration.commandline.Main --defaultsFile props/mig.properties --changeLogFile generated.xml generateChangeLog The commandline above works for...
View ArticleRe : Good practices - Use of LiquiBase packages and SVN
In other words there is any way to exclude the check sum in the changeSet ?
View ArticleExclude check sum in the changeSet
Hi, I would like to know if there is any way to exclude the check sum for a changeSet.I'm using now the runOnChange parameter... but would be nice to disable this check in some scenarios.Thanks in...
View ArticleRe : Hibernate for 3.x? New Typeconversion?
I haven't gotten to the hibernate extesion with 3.0 yet, but it looks like there is a pull request coming that will hopefully get it updated: http://forum.liquibase.org/topic/maven-hibernateInteresting...
View ArticleRe : Facing issue with custom Precondition
Glad it's working for you. I also introduced your call to getExpectedResult() for the next liquibase release, thanks for pointing it out.Nathan
View ArticleRe : Column comments not added
I created https://liquibase.jira.com/browse/CORE-1451 to track the bug and will look into it.Nathan
View ArticleRe : addColumn not accepted
Good to hear the 3.x version is generally working better for you. Can you send more information on the failing changeset and what the error is?Nathan
View ArticleRe : Cross DBMS usage of createIndex
I have some stubbed logic so far to support automatically skipping indexes, but it hasn't been fully implemented yet. I created https://liquibase.jira.com/browse/CORE-1452 to track the feature.For now,...
View ArticleRe : Separate credentials for querying and updates
There is nothing built into liquibase currently, but there may be some options with the extension system if you do a little coding. In particular, you could create a Database implementation that...
View ArticleRe : Using Liquibase Java API to generate SQL file from ChangeLog
If you are using the command line, you wouldn't have to worry about the writer parameter is. That is just if you are using the java API directly.Yes, if you run updateSQL it runs liquibase update like...
View ArticleRe : How to handle migrations with multiple RDBMS?
It should be possible to do in an extension, Arnaud, which is where I think it should go. I've been planning on trying to create one but haven't gotten to it yet. If you wanted to create and extension...
View ArticleRe : Cross DBMS usage of createIndex
I wanted to ask you about the changesets too. Is it best practice to create so many changesets? I thought of a changeset as something that includes the changes of an app version. For example if I want...
View ArticleRe : Exclude check sum in the changeSet
It makes sense to have your packages, triggers, views etc. in a runOnChange changeset since that works much nicer with SVN's diff and history. For tracking history on a view definition back to a...
View ArticleRe : Generating a change log with multiple columns foreign keys from an...
It should be fixed, I'll have to take a look. If you have an easy test case you can send that would be great.Nathan
View ArticleRe : Generating a change log with multiple columns foreign keys from an...
I created https://liquibase.jira.com/browse/CORE-1453 to track the issue in 3.0.4Nathan
View ArticleLiquibase preconditions not working
I'm trying to use liquibase to track changes to a postgresql database using dropwizard-migrations. I'd like to be able to run the migration on the existing production database instead of rebuilding...
View ArticleRe : generateChangeLog and difftypes
It's working for me. Can you list more info on how you're running generateChangeLog?Nathan
View ArticleRe : Liquibase not rollbacking changeset
What version of Liquibase are you running? The newest 3.0.4?Nathan
View ArticleRe : Liquibase.jar can't load own classes if it resides inside another jar.
OK - can you provide any more information.. Does not work for me... Thanks for any information... (FYI - it works fine when I run it in Eclipse - just not when bundled with one-jar.)Maven Dependency...
View ArticleRe : Liquibase.jar can't load own classes if it resides inside another jar.
Well, i comletely forgot about this issue and didn't think that anyone would write here :DIt works correct in IDE because there is a difference how a classloader works in IDE and in one-jar. I can't...
View Article