We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbd31d7 commit db137faCopy full SHA for db137fa
lib/mysql2psql/postgres_writer.rb
@@ -54,7 +54,8 @@ def column_type_info(column)
54
"real"
55
when "decimal"
56
default = " DEFAULT #{column[:default].nil? ? 'NULL' : column[:default]}" if default
57
- "numeric(#{column[:length] || 10}, #{column[:decimals] || 5})"
+ #"numeric(#{column[:length] || 10}, #{column[:decimals] || 5})"
58
+ "real"
59
60
when "double precision"
61
0 commit comments