aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorwallerjake <wallerjake@gmail.com>2015-03-21 17:08:55 -0500
committerwallerjake <wallerjake@gmail.com>2015-03-21 19:32:41 -0500
commit9bc4eb7ee180a434ea0f23388e04061583ebb5b9 (patch)
treef8182328f3431fbe76baed21bcb397554c1b1bd0 /activerecord/test/schema
parent3064533076c83517c7297adeea473fe52f0bb454 (diff)
downloadrails-9bc4eb7ee180a434ea0f23388e04061583ebb5b9.tar.gz
rails-9bc4eb7ee180a434ea0f23388e04061583ebb5b9.tar.bz2
rails-9bc4eb7ee180a434ea0f23388e04061583ebb5b9.zip
Delegate limit to subtype
As described here https://github.com/rails/rails/issues/19420. When using the Postgres BigInt[] field type the big int value was not being translated into schema.rb. This caused the field to become just a regular integer field when building off of schema.rb. This fix will address this by delegating the limit from the subtype to the Array type. https://github.com/rails/rails/issues/19420
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/postgresql_specific_schema.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/schema/postgresql_specific_schema.rb b/activerecord/test/schema/postgresql_specific_schema.rb
index f84be0e7f4..008503bc24 100644
--- a/activerecord/test/schema/postgresql_specific_schema.rb
+++ b/activerecord/test/schema/postgresql_specific_schema.rb
@@ -93,4 +93,8 @@ _SQL
t.binary :binary, limit: 100_000
t.text :text, limit: 100_000
end
+
+ create_table :bigint_array, force: true do |t|
+ t.integer :big_int_data_points, limit: 8, array: true
+ end
end