diff --git a/target_redshift/db_sync.py b/target_redshift/db_sync.py index 4a79049..af6b51e 100644 --- a/target_redshift/db_sync.py +++ b/target_redshift/db_sync.py @@ -70,7 +70,7 @@ def column_type(schema_property, with_length=True): column_type = 'character varying' varchar_length = LONG_VARCHAR_LENGTH elif 'integer' in property_type: - column_type = 'numeric' + column_type = 'numeric(38,0)' elif 'boolean' in property_type: column_type = 'boolean'