aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/ar_schema_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/ar_schema_test.rb')
-rw-r--r--activerecord/test/ar_schema_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/ar_schema_test.rb b/activerecord/test/ar_schema_test.rb
index f20fa6c180..c700b85eac 100644
--- a/activerecord/test/ar_schema_test.rb
+++ b/activerecord/test/ar_schema_test.rb
@@ -18,7 +18,7 @@ if ActiveRecord::Base.connection.supports_migrations?
ActiveRecord::Schema.define(:version => 7) do
create_table :fruits do |t|
t.column :color, :string
- t.column :size, :string
+ t.column :fruit_size, :string # NOTE: "size" is reserved in Oracle
t.column :texture, :string
t.column :flavor, :string
end