Fixed problem with last LiquiBase change in PostgreSQL.

it set defaultNullValue to true,  in order to update the value to true if the value is null.

Execute the next SQL sentence in your database if you want to
keep working with your current database:

UPDATE DATABASECHANGELOG SET MD5SUM='3:0542da97fbff41b95f9cf5ef10ffa322' WHERE ID='add-new-column-enabled-autocomplete-login' AND
AUTHOR='smontes' AND FILENAME='src/main/resources/db.changelog-1.1.xml';

FEA:ItEr74S04BugFixing
This commit is contained in:
Susana Montes Pedreira 2011-05-31 10:38:05 +02:00
parent 6d3d3a6b2c
commit d254e4988d

View file

@ -14,7 +14,7 @@
defaultValueBoolean="TRUE" />
<addNotNullConstraint tableName="configuration"
columnName="enabled_autocomplete_login"
defaultNullValue="FALSE"
defaultNullValue="TRUE"
columnDataType="BOOLEAN" />
</changeSet>