diff --git a/db_converter.py b/db_converter.py index 439957b..6605f9f 100644 --- a/db_converter.py +++ b/db_converter.py @@ -94,6 +94,7 @@ def parse(input_filename, output_filename): # Is it a column? if line.startswith('"'): useless, name, definition = line.strip(",").split('"',2) + name = name.lower() # postgres converts to lowercase anyway try: type, extra = definition.strip().split(" ", 1)