aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2014-05-23 10:59:30 -0700
committerSean Griffin <sean@thoughtbot.com>2014-05-23 11:09:48 -0700
commit05dd3df35db8b2d39ed177f4ccfe112bdfe7726d (patch)
treee4956819b7267254015ccbb367307e527231dff5 /activerecord/test/cases/adapters
parentb318758bda9f9ea9c94abb81e8a66a8b48cb720c (diff)
downloadrails-05dd3df35db8b2d39ed177f4ccfe112bdfe7726d.tar.gz
rails-05dd3df35db8b2d39ed177f4ccfe112bdfe7726d.tar.bz2
rails-05dd3df35db8b2d39ed177f4ccfe112bdfe7726d.zip
Remove `Column#primary`
It appears to have been used at some point in the past, but is no longer used in any meaningful way. Whether a column is considered primary is a property of the model, not the schema/column. This also removes the need for yet another layer of caching of the model's schema, and we can leave that to the schema cache.
Diffstat (limited to 'activerecord/test/cases/adapters')
-rw-r--r--activerecord/test/cases/adapters/sqlite3/copy_table_test.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/test/cases/adapters/sqlite3/copy_table_test.rb b/activerecord/test/cases/adapters/sqlite3/copy_table_test.rb
index b478db749d..13b754d226 100644
--- a/activerecord/test/cases/adapters/sqlite3/copy_table_test.rb
+++ b/activerecord/test/cases/adapters/sqlite3/copy_table_test.rb
@@ -60,7 +60,6 @@ class CopyTableTest < ActiveRecord::TestCase
assert_equal original_id.type, copied_id.type
assert_equal original_id.sql_type, copied_id.sql_type
assert_equal original_id.limit, copied_id.limit
- assert_equal original_id.primary, copied_id.primary
end
end