Skip to content

Commit 5d2b384

Browse files
committed
Removed casting of is_identity since it's already a bool now.
1 parent ea9aa1d commit 5d2b384

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

lib/active_record/connection_adapters/sqlserver/schema_statements.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ def column_definitions(table_name)
234234
end
235235
ci[:null] = ci[:is_nullable].to_i == 1 ; ci.delete(:is_nullable)
236236
ci[:is_primary] = ci[:is_primary].to_i == 1
237-
ci[:is_identity] = ci[:is_identity].to_i == 1
238237
ci
239238
end
240239
end

0 commit comments

Comments
 (0)