setColumnRemarks is not supported on mysql
Hello Everyone,I am using Liquibase 3.6.2 and Mysql. While applying the changeset to DB validation for liquibase failed with the below error:Unexpected error running Liquibase: Validation Failed: 1...
View ArticledefaultValueComputed not working correctly with Postgres
The following change:<addColumn tableName="foo"> <column name="expired" type="timestamp" defaultValueComputed="current_timestamp + '60 days'::interval"/></addColumn>is translated...
View ArticleUse enddelimeter on changesets
Is there a way to use enddelimeter not only in SQL tags but also in changeset tags? I have generated a SQL file with many DML statements and this can cause some problems in Oracle so I want to add a...
View ArticleID and databasechangelog - LB does not check if the order changes
So the original XML had only the id created by John Smith and LB executed it successfully. We then found an issue and then recreated the XML and this time we added a new ID of mary doe before the...
View ArticleRe : ID and databasechangelog - LB does not check if the order changes
The full 'unique identifier' of a changeset is the changeset author, id, and file. In your example you have two different authors, so Liquibase considers them as two different changesets, and will try...
View ArticleLiquibase Extension HelloWorld
Tried to create the simple helloWorld example (http://forum.liquibase.org/topic/tutorial-write-your-own-extension) using liquibase-core-3.5.3.jar. When logLevel debug is set, it looks like it never...
View ArticleRe : Liquibase Extension HelloWorld
Finally got it to work by prefixing the namespace. I added a namespace for ext to separate it from the base one.<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"...
View ArticleRe : Liquibase Extension HelloWorld
Also, make sure you do not use --classpath liquibase argument to pass in your custom extension jar. It seems to only load the database driver.So for instance the below did not work --->...
View ArticleSql Server Permissions
Relatively new to Liquibase, so be gentle.I'm trying to setup a login/permissions in Sql Server for Liquibase. Does anyone know what permissions are required for Liquibase to work properly against Sql...
View ArticleRe : Sql Server Permissions
These are the permissions that we document for DaticalDB, which is based on Liquibase. Since Datical DB does quite a bit more than Liquibase standalone, some of these will not apply.DATICAL...
View ArticleProblems building Liquibase
Hey there,was thinking of working on https://liquibase.jira.com/browse/CORE-2375. I branched off master, but the master does not build (see also...
View ArticleRe : Problems building Liquibase
I've notified Nathan that this is an issue. I also just cloned liquibase/liquibase master and when I ran `mvn clean verify` I got 4 test failures. Some of these are the same as what you are seeing,...
View ArticleRe : Running custom extension in Liquibase -element is not bounded
Can you include the xml namespace portions at the top of your changelog.xml and dbchangelog-ext.xsd file? The error you are running into may be due to that format. The vacuum prefix namespace may not...
View ArticleAccessing context path inside changelog file.
Hi,I have a requirement in my project where I want to read files into table CLOB data. The database is oracle 12g. We are using liquibase to maintain the data. The project is in springboot. Liquibase...
View ArticleEscape ' in sql file
Hello,I use <sqlFile encoding="utf8" path="${sql.files.path}/TRANSLATION_VALUE_SHORT_DE.sql" relativeToChangelogFile="true" splitStatements="true"...
View ArticleRe : Problems building Liquibase
Managed to get this work on the 3.5.x branch.Still would love to get some help here...See https://liquibase.jira.com/browse/CORE-2375
View ArticleTimeout for long running dml
Hello,I am planning to start using liquibase and one of the important use case is to run long running dml (probably upto 2 millions inserts sometimes) . will liquibase timeout in the middle executing...
View ArticleRollback whe yaml format is used
I cannot understand rollback process when I am using yaml format of settings.Xml example:<?xml version="1.0" encoding="utf-8" ?><databaseChangeLog...
View Articlemaven generateChangeLog several files
Hi i am usingmvn liquibase:generateChangeLogwith the examples from the site but it generates a single file for the entire BD.is there a way to separate the data something like this.├── constraints├──...
View Article