This is what my column looks like
<column name="name" type="VARCHAR(255)"> <constraints nullable="false" unique="true"/> </column>
I want to remove the unique=true constraint.
I looked what liquibase has to offer, and it has
<changeSet author="liquibase-docs" id="dropUniqueConstraint-example"> <dropUniqueConstraint catalogName="cat" constraintName="const_name" schemaName="public" tableName="person" uniqueColumns="A String"/> </changeSet>
Now since constraintName is required and I don't have one, what are my options?
How to reset unique=true with liquibase?
java liquibase
daydreamer
source share