diff --git a/db_converter.py b/db_converter.py index 439957b..6afdfaf 100644 --- a/db_converter.py +++ b/db_converter.py @@ -120,6 +120,9 @@ def parse(input_filename, output_filename): elif type.startswith("bigint("): type = "bigint" set_sequence = True + elif type.startswith("tinyint("): + type = "smallint" + set_sequence = True elif type == "longtext": type = "text" elif type == "mediumtext":