We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d726673 commit 26c3776Copy full SHA for 26c3776
lib/active_record/connection_adapters/sqlserver/schema_statements.rb
@@ -504,7 +504,7 @@ def column_definitions(table_name)
504
results = internal_exec_query(sql, "SCHEMA", binds)
505
506
columns = results.map do |ci|
507
- ci = ci.symbolize_keys
+ ci = ci.to_h.symbolize_keys
508
ci[:_type] = ci[:type]
509
ci[:table_name] = view_tblnm || table_name
510
ci[:type] = case ci[:type]
0 commit comments