Tagged Questions

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
28 views

Liquibase changelog does not carry the column position or 'AFTER column_name'

To generate a database change log for a table alteration, I use Liquibase. But liquibase change logs doesn't carry specific positions of column name. The following change set was generated through ...
0
votes
0answers
36 views

Liquibase - reference table seen as empty when running diff operation

I'm trying to write a diff script for liquibase to compare two databases and then create a changelog. The databases both contain tables for phpBB forums. However when I run the diff query it treats ...
0
votes
1answer
88 views

Liquibase Diff operation not producing output file

I'm trying to run a liquibase diff operation on two tables. The operation appears to work fine as I can see all the comparisons happening in Command Prompt. The only issue I have is that no file is ...
0
votes
1answer
301 views

MySQL error when creating tables through liquibase

I'm using Grails 1.3.7 + MySQL 5.5 + Liquibase through the database-migration plugin 0.2.1. When I'm in my development environment, I have Hibernate configured to use "create-drop" but in my QA ...
0
votes
1answer
93 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 ...
0
votes
1answer
323 views

Is there a workaround for JDBC w/liquibase and MySQL session variables & client side SQL instructions

Slowly building a starter changeSet xml file for one of three of my employer's primary schema's. The only show stopper has been incorporating the sizable library of MySQL stored procedures to be ...
0
votes
1answer
564 views

Liquibase diff generates changeset using wrong case on tablenames

I'm performing a diff on a remote mysql database using LiquiBase, and finding that the changeset that is generated uses the incorrect casing for table names (all lowercase). This subsequently causes ...