aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@users.noreply.github.com>2018-06-04 16:48:52 -0400
committerGitHub <noreply@github.com>2018-06-04 16:48:52 -0400
commitc4c8e35cac419076a86112d7764f2afdef554483 (patch)
tree22cf0006dfaed42f40e52445dee1cb3e26fb3f0b /activerecord/lib
parentf67b4a5b3f6136fe7af0d6e79daa593b8ab3d159 (diff)
parent7ef9849e3d51c1f4a37af368b770d8fdb41883cd (diff)
downloadrails-c4c8e35cac419076a86112d7764f2afdef554483.tar.gz
rails-c4c8e35cac419076a86112d7764f2afdef554483.tar.bz2
rails-c4c8e35cac419076a86112d7764f2afdef554483.zip
Merge pull request #33029 from fedxgibson/raise_with_duplicate_columns
Migrations will raise an exception if there are multiple column defin…
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb
index 5f090d16cd..582ac516c7 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb
@@ -356,8 +356,12 @@ module ActiveRecord
type = type.to_sym if type
options = options.dup
- if @columns_hash[name] && @columns_hash[name].primary_key?
- raise ArgumentError, "you can't redefine the primary key column '#{name}'. To define a custom primary key, pass { id: false } to create_table."
+ if @columns_hash[name]
+ if @columns_hash[name].primary_key?
+ raise ArgumentError, "you can't redefine the primary key column '#{name}'. To define a custom primary key, pass { id: false } to create_table."
+ else
+ raise ArgumentError, "you can't define an already defined column '#{name}'."
+ end
end
index_options = options.delete(:index)