I have a primary key column which is an INT column which I would like to change to a BIGINT. Our test and production environment uses MySQL, but for unit tests we use the embedded H2 database.
The documentation for the <sqlFile> custom refactoring tag says that the classpath will be searched for the file.
I\'m trying to execute in Java code analogue of Ant\'s \"updateDatabase\" task: Main.main( new String[]{\"--defaultsFile=db/properties/db.test.properties --logLevel=debug update\"} );
I\'m testing datasource layer using dbunit, junit, liquibase, hsqldb. I\'m using in memory-state of hsqldb.
Is it possible to use LDAP authentication with Liquibase? If not, how have others solved the problem of automating changes to production database schemas using Liquibase (yet still 开发者_如何学JAVAk
I\'ve just upgraded to Liquibase 2.0.2 using the provided jar file, and I\'ve found that it runs slower than its predecessor.If no updates are necessary, it still takes about 15 seconds to run, compar
I am trying to get phing to work nice with liquibase. But pPing gives this illustrous error (which I honestly can\'t find online)
I am using Hibernate 2 + Spring 3 + Liquibase 1.9. I have created my entity classes using Hibernate annotation as normal
I\'m trying to create an index with Liquibase Here is the changeSet <changeSet id=\".... <createIndex tableName=\"xyz\"indexName=\"abc\">
Can anyone tell me the difference between specifying a defaultValue=\"0\" vs a defaultValueNumeric=\"0\" in a changeset开发者_开发问答? It\'s for a bigint column.