Skip to content

Commit

Permalink
fix missing ,
Browse files Browse the repository at this point in the history
  • Loading branch information
steveny committed Feb 5, 2021
1 parent 97bfd7b commit 417440b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def columns(table_name)
def new_column(name, default, sql_type_metadata, null, default_function = nil, collation = nil, comment = nil, sqlserver_options = {})
SQLServerColumn.new(
name,
default.nil? ? nil : default.to_s
default.nil? ? nil : default.to_s,
sql_type_metadata,
null,
default_function,
Expand Down

0 comments on commit 417440b

Please sign in to comment.