Changeset identifiers - best practises - supporting multiple branches
Team,Whilst the liquibase documentation doesn't enforce / recommend any particular convention for the identifier I'd be interested in other teams experiences on what worked well / didn't for them and...
View ArticleRe : Liquibase creates log tables with user schema
I'm not sure and it sounds more like a general SQL Server user permissions issue you might get good answers googling with those keywords. However for liquibase it may help to simply generate the SQL...
View ArticleRe : Good discussion and review of other database migration frameworks
It seems dbDeploy, migrate4j and MIGRATEdb are abandoned (last release for migrade4j was in 2008, and for dbdeploy in 2009 and MIGRATEdb in 2014)I just had a brief look at MIGRATEdb and the fact that...
View ArticleincludeAll without recursion
I suppose that includeAll is recursive and there is no possibility to make it not recursive, is it correct?I need this possibility. Is it on your roadmap?
View ArticleRe : Deployment_id in 3.5.3
Yes, the deployment_id is automatically generated, and there is currently no way to control or supply that value. Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View ArticleRe : Changeset identifiers - best practises - supporting multiple branches
We have found it easier to have identifiers as JIRA tickets with optional -01/-02 etc when necessary. It has worked well for us, furthermore it immediately tells you which ticket the changeset belongs to.
View ArticleRe : Changeset identifiers - best practises - supporting multiple branches
Thanks Raj, yes although the changeset comment could be used to reflect that information too. When you span multiple JIRA tickets for a change do you have any pattern? How do you coordinate numbers...
View ArticleRe : Changeset identifiers - best practises - supporting multiple branches
For multiple tickets for a change, usually we put the main jira ticket number as id and reference all tickets in comments. That seems to work well for us.
View ArticleLiquibase partially contained database case sensetivity
I have created partially contained database in MS SQL server 2012. Database collation is Cyrillic_General_CS_AS. In contained database this collation applies only for user data and temp data. Database...
View Articleclustered index for MSSQL
I see that in LIQUIBASE 3.3.0 AND 3.2.3 THERE IS NEW ATTRIBUTE:Support for clustered/nonclustered indexes and primary keysWe installed the latest version(3.5.1 ??)We're running it on MSSQLI did the...
View ArticleHow to add a complete folder to the classpath?
Hi everybody,I want to add a complete folder to the liquibase classpath. In this folder, the database-driver is stored.I neither want to copy the driver to another folder (because it is also part of...
View ArticleRe : How to add a complete folder to the classpath?
This is a general limitation of java, not liquibase. To fix this, you would need to write your own launcher - either a new version of java.exe or a wrapper script in the scripting language of your...
View ArticleIs the Gradle plug-in advised?
As I'm new to Liquibase, it might be my ignorance, but I wonder whether the Liquibase plug-in is being advised. I have a hard time making it work for me. I would like to generate a change log based on...
View ArticleRe : How to add a complete folder to the classpath?
Thanks for your answer. I never tried it in java, but I thougt, it is possible to add ./my/folder/* to the classpath?!?However, I solve it within the script.
View ArticleBest way to create masterdata per tenant?
Hello together,what is the recommended way of liquibase to handle multi-tenant applications with identical database schema but with different masterdata per tenant?I was thinking of using contexts, but...
View ArticleRe : Is the Gradle plug-in advised?
I am not sure of the state of the gradle plugin - but you may get better response to this question on Stack Overflow than in this forum. It has been my experience that there are more people answering...
View ArticleRe : Is the Gradle plug-in advised?
Thank you Steve!As I guessed so too, I posted it there yesterday. I didn't ask the advise question there, as S.O. doesn't like opinion questions. The underwhelming response answers that question...
View ArticleUnable to delete changelog files after liquibase operation
I am working with liquibase to update database with temp changlog files and delete then after liquibase operation like executeUpdate.But file delete operation is failing after liquibase operation,...
View ArticleRe : Is the Gradle plug-in advised?
FYI: I've decided to ignore the Liquibase Gradle plug-in and go with a custom Gradle task as described by Hazim here on Stack Overflow. That works like a charm.
View Article