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 committed Feb 29, 2024
1 parent c5a8bc2 commit 1ee8024
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 1ee8024

Please sign in to comment.