Tagged Questions
2
votes
1answer
1k views
how to insert html tag inside sql in Liquibase migration?
I need to update my data that have html tag inside so wrote this on liquibase
<sql> update table_something set table_content = " something <br/> in the next line " </sql>
it ...
1
vote
1answer
283 views
Liquibase Rollback Custom SQL
I can't figure out how to rollback custom Sql within a changeset. Any thoughts?
I'd like to do this:
<changeSet author="Charlie White" id="15" runAlways="false" runOnChange="false" ...
1
vote
2answers
1k views
how to delete index on mysql table?
I have a table generated by GORM (Grails Domain). It has foreign key / index that generated random characters like FKAC7AAF67162A158F. I need to remove that field that not needed anymore.
The ...
0
votes
1answer
119 views
Properties in Liquibase change scripts
What's the best way to have propeties filled out in a Liquibase SQL file?
I wan't to use this for specifying things like tablespaces and schemas. Ideally it would be done run-time with Liquibase, ...
0
votes
1answer
94 views
Liquibase beginner: making a ManyToMany association bidirectional
I am using Hibernate with JPA annotations. I have a one-directional many-to-many association that I intend to make bi-directional.
The database already contains some data. I'm thinking of using ...