Skip to content

Commit 419095a

Browse files
authored
Fixes #663: Bug on diff, TIME needs to be handled same as TIMESTAMP (#664)
1 parent 1b5f1ec commit 419095a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/liquibase/ext/hibernate/diff/ChangedColumnChangeGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020
public class ChangedColumnChangeGenerator extends liquibase.diff.output.changelog.core.ChangedColumnChangeGenerator {
2121

22-
private static final List<String> TYPES_TO_IGNORE_SIZE = List.of("TIMESTAMP");
22+
private static final List<String> TYPES_TO_IGNORE_SIZE = List.of("TIMESTAMP", "TIME");
2323

2424
@Override
2525
public int getPriority(Class<? extends DatabaseObject> objectType, Database database) {

0 commit comments

Comments
 (0)