Re-start using liquibase on project
I have in my project liquibase set up and all is working fine. There is initial xml files, made one year ago and a lot of change sets that are made meanwhile.I run all change-sets for test executions....
View ArticleCreating a table with liquibase xml using api java with context defined not...
Hi,I need update my database with new changesets of one especific context. When a run my code, the liquibase runs normally, but the table is not created. Nothing error is showed, so it is very...
View ArticleRe : Creating a table with liquibase xml using api java with context defined...
If there was some sort of error, I am pretty certain that the liquibase.update() method would throw an exception. If it is not, then Liquibase believes it is operating 'as designed', so the likelihood...
View ArticleRe : Creating a table with liquibase xml using api java with context defined...
Thanks so much Steve, you was very fast!First, let me to explain the cenario that I am developing. I am buiding a graphic interface that choose a database, a context tag and the rotine from liquibase...
View ArticleRe : Creating a table with liquibase xml using api java with context defined...
I'd like to help you, but you aren't giving me much information to work with. What you want to do seems completely possible - it is exactly what Liquibase is designed to do.So - what is the 'willRun'...
View ArticleLiquibase 3.4.2 H2 database
Hello We recently upgraded liquibase to use the latest version (3.4.2) and we use H2 in memory database. With the new version I'm getting the below exception 2016-04-20 10:08:12,284 [main] ERROR -...
View ArticleRe : Creating a table with liquibase xml using api java with context defined...
Hi Steve,I discovered what was the problem! Debugging, I gave pass the wrong context to the liquibase! So, now it works normally.Thanks for your help.
View ArticleRe : Cannot get diff against Hibernate to work in ant
I have very limited experience with the hibernate plugin but based on the ClassNotFoundException I would say that the classpath given to the ant task doesn't have everything it needs to run. The...
View ArticleRe : Liquibase 3.4.1 - unsupported database Exasol issue
Hi,I am trying to do the liquibase implementation for exasol and I have the same issues. I changed the type of LOCKED column to BOOLEAN and then to VARCHAR, in both cases I get:Unexpected error running...
View ArticleRe : Liquibase 3.4.2 H2 database
Can you post the full stacktrace? You may need to run with --logLevel=debug or something similar depending on how you run Liquibase.Nathan
View ArticleWrong release date for 3.5.0 on download page
The download page states that 3.5.0 was released "Apr 19, 2015". Shouldn't that be "Apr 19, 2016"?
View ArticleRe : Wrong release date for 3.5.0 on download page
Yes it should. I fixed it up, thanks for pointing it out.Nathan
View ArticleExtending Liquibase CreateTableStatement
I need a simple extension to Liquibase to add a distribution clause to a postgresql variant. I've created a project with a database that extends PostgresDatabase, a CreateTableGeneratorX that extends...
View ArticleRe : Extending Liquibase CreateTableStatement
I think I'm almost at a point where my extension should be workable. I created the following:liquibase.ext.pgxl.change.CreateTableChangePgxl - extends AbstractChange implements...
View ArticleSemantics of ignoreClasspathPrefix
I am using Liquibase through the Spring integration to run any changesets on application start-up. Since the changelog is part of a jar, I specify the location in one of my property files...
View ArticleRe : Extending Liquibase CreateTableStatement
In CreateTableChangePgxl did you annotate it with @DatabseChange and a priority higher than PRIORITY_DEFAULT? Also, do you have a CreateTableGenerator subclass that uses the new Statement class?Nathan
View ArticleRe : Extending Liquibase CreateTableStatement
Thanks for responding Nathan. I have:@DatabaseChange(name="createPgxlTable", description = "create tables", priority = ChangeMetaData.PRIORITY_DATABASE)public class CreateTableChangePgxl extends...
View ArticleRe : Checksum calculations and line ending styles
What version of Liquibase addressed this?
View ArticleRe : Extending Liquibase CreateTableStatement
Try using a higher priority than PRIORITY_DATABASE. The standard database-specific CreateTable implemetnations will use that as well and may be selected instead. Try just setting priority to 100 on...
View Article