aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-07-27 17:06:22 +0000
committerJamis Buck <jamis@37signals.com>2005-07-27 17:06:22 +0000
commit369d0543380d302fb4b4fc30d4f6d52f07f9c0b6 (patch)
tree9af5bc70b2cf000b90c2182ffce88c64cd1c17b0 /activerecord/test
parent9fad3251d3d11f32fad01c820b6d1d72e2329976 (diff)
downloadrails-369d0543380d302fb4b4fc30d4f6d52f07f9c0b6.tar.gz
rails-369d0543380d302fb4b4fc30d4f6d52f07f9c0b6.tar.bz2
rails-369d0543380d302fb4b4fc30d4f6d52f07f9c0b6.zip
Fix create_table so that id column is implicitly added [Rick Olson]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1949 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/migration_test.rb13
1 files changed, 12 insertions, 1 deletions
diff --git a/activerecord/test/migration_test.rb b/activerecord/test/migration_test.rb
index d5081e5335..60bdf90bf4 100644
--- a/activerecord/test/migration_test.rb
+++ b/activerecord/test/migration_test.rb
@@ -39,6 +39,17 @@ if ActiveRecord::Base.connection.supports_migrations?
assert_nothing_raised { Person.connection.add_index("people", ["last_name", "first_name"]) }
assert_nothing_raised { Person.connection.remove_index("people", "last_name") }
end
+
+ def test_create_table_adds_id
+ Person.connection.create_table :testings do |t|
+ t.column :foo, :string
+ end
+
+ assert_equal %w(foo id),
+ Person.connection.columns(:testings).map { |c| c.name }.sort
+ ensure
+ Person.connection.drop_table :testings rescue nil
+ end
def test_native_types
Person.delete_all
@@ -198,4 +209,4 @@ if ActiveRecord::Base.connection.supports_migrations?
assert_equal "hello world", Reminder.find(:first).content
end
end
-end \ No newline at end of file
+end