Showing 4 of 4 total issues
Method initialize
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
def initialize(name, default, sql_type_metadata = nil, null = true, default_function = nil, collation: nil, comment: nil, serial: nil, generated: nil, spatial: nil, identity: nil) @sql_type_metadata = sql_type_metadata @geographic = !!(sql_type_metadata.sql_type =~ /geography\(/i)
- Read upRead up
Method new_column_definition
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
def new_column_definition(name, type, **options) col_type = if type.to_sym == :virtual options[:type] else type
- Read upRead up
Method initialize
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
def initialize(name, default, sql_type_metadata = nil, null = true, default_function = nil, collation: nil, comment: nil, serial: nil, generated: nil, spatial: nil, identity: nil)
Method parse_sql_type
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def self.parse_sql_type(sql_type) geo_type = nil srid = 0 has_z = false has_m = false
- Read upRead up