From 869a172a8a6e2d2182f16e959f4a41fa10df133a Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Thu, 7 Jun 2007 23:25:50 +0000 Subject: Migrations: raise if a column is duplicated. Closes #7345. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6961 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/migration_test.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'activerecord/test') diff --git a/activerecord/test/migration_test.rb b/activerecord/test/migration_test.rb index d1e2059c9a..fa765a7017 100644 --- a/activerecord/test/migration_test.rb +++ b/activerecord/test/migration_test.rb @@ -807,6 +807,22 @@ if ActiveRecord::Base.connection.supports_migrations? end end + def test_should_disallow_duplicate_column_definition + assert_raises(ActiveRecord::StatementInvalid) do + Person.connection.add_column("people", "full_name", :string, :limit => 40) + Person.connection.add_column("people", "full_name", :text) + end + + assert_raises(RuntimeError) do + Person.connection.create_table :people_with_errors do |t| + t.column "full_name", :string, :limit => 40 + t.column "full_name", :text + end + end + + Person.reset_column_information + end + end end -- cgit v1.2.3