aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migration_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/migration_test.rb')
-rw-r--r--activerecord/test/migration_test.rb16
1 files changed, 16 insertions, 0 deletions
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