1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

removing unused variable

This commit is contained in:
Aaron Patterson 2010-10-23 20:15:47 -07:00
parent b0aae28422
commit 3e4ede81d6

View file

@ -83,7 +83,7 @@ HEADER
# first dump primary key column
if @connection.respond_to?(:pk_and_sequence_for)
pk, pk_seq = @connection.pk_and_sequence_for(table)
pk = @connection.pk_and_sequence_for(table).first
elsif @connection.respond_to?(:primary_key)
pk = @connection.primary_key(table)
end