aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2015-06-11 16:48:23 -0600
committerSean Griffin <sean@thoughtbot.com>2015-06-11 16:50:25 -0600
commit5b35562d8e8f7270c75e83645498dd92a0968072 (patch)
tree4070f6f997d38dc3002e2190ae40661880dd8963 /activerecord/test/schema
parent21f7bcbaa7709ed072bb2e1273d25c09eeaa26d9 (diff)
downloadrails-5b35562d8e8f7270c75e83645498dd92a0968072.tar.gz
rails-5b35562d8e8f7270c75e83645498dd92a0968072.tar.bz2
rails-5b35562d8e8f7270c75e83645498dd92a0968072.zip
Correctly handle array columns with defaults in the schema dumper
If the subtype provides custom schema dumping behavior, we need to defer to it. We purposely choose not to handle any values other than an array (which technically should only ever be `nil`, but I'd rather code defensively here). Fixes #20515.
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/postgresql_specific_schema.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/schema/postgresql_specific_schema.rb b/activerecord/test/schema/postgresql_specific_schema.rb
index 872fa595b4..df0362573b 100644
--- a/activerecord/test/schema/postgresql_specific_schema.rb
+++ b/activerecord/test/schema/postgresql_specific_schema.rb
@@ -107,5 +107,6 @@ _SQL
create_table :bigint_array, force: true do |t|
t.integer :big_int_data_points, limit: 8, array: true
+ t.decimal :decimal_array_default, array: true, default: [1.23, 3.45]
end
end