Skip to content

Commit

Permalink
Fixes #663: Bug on diff, TIME needs to be handled same as TIMESTAMP (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
T00fy authored Mar 1, 2024
1 parent 1b5f1ec commit 419095a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
public class ChangedColumnChangeGenerator extends liquibase.diff.output.changelog.core.ChangedColumnChangeGenerator {

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

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

0 comments on commit 419095a

Please sign in to comment.