1

I was wondering Is there any preconditions run by default for liquibase modifydatatype upgrade? For example if i am changing column "A" whose data type is integer in following way :

<modifyDataType
            columnName="A"
            newDataType="int"
            schemaName="public"
            tableName="person"/>

Will it check before executing that the column type is same as before?

Nothing as such is written in documentation : http://www.liquibase.org/documentation/changes/modify_data_type.html

Rohit
  • 13
  • 2