aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/mysql2/unsigned_type_test.rb
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-03-11 11:27:09 -0300
committerRafael França <rafaelmfranca@gmail.com>2016-03-11 11:27:09 -0300
commit4d7e96910f7704e08eb193ddf47323cc71a8ab11 (patch)
treed869d4a7290791bcfd1f0a021a09a57e9c3e7f80 /activerecord/test/cases/adapters/mysql2/unsigned_type_test.rb
parentc9219a75fc03cb5e7e1a267659426c894bc8da42 (diff)
parent37024ce479676bbb338d4083dbc31f34a1eca893 (diff)
downloadrails-4d7e96910f7704e08eb193ddf47323cc71a8ab11.tar.gz
rails-4d7e96910f7704e08eb193ddf47323cc71a8ab11.tar.bz2
rails-4d7e96910f7704e08eb193ddf47323cc71a8ab11.zip
Merge pull request #24087 from kamipo/dump_bigint_instead_of_integer_limit_8
Dump `bigint` instead of `integer` with `limit: 8` for schema dumper
Diffstat (limited to 'activerecord/test/cases/adapters/mysql2/unsigned_type_test.rb')
-rw-r--r--activerecord/test/cases/adapters/mysql2/unsigned_type_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/adapters/mysql2/unsigned_type_test.rb b/activerecord/test/cases/adapters/mysql2/unsigned_type_test.rb
index c95a64cc16..0a9703263e 100644
--- a/activerecord/test/cases/adapters/mysql2/unsigned_type_test.rb
+++ b/activerecord/test/cases/adapters/mysql2/unsigned_type_test.rb
@@ -58,7 +58,7 @@ class Mysql2UnsignedTypeTest < ActiveRecord::Mysql2TestCase
test "schema dump includes unsigned option" do
schema = dump_table_schema "unsigned_types"
assert_match %r{t.integer\s+"unsigned_integer",\s+unsigned: true$}, schema
- assert_match %r{t.integer\s+"unsigned_bigint",\s+limit: 8,\s+unsigned: true$}, schema
+ assert_match %r{t.bigint\s+"unsigned_bigint",\s+unsigned: true$}, schema
assert_match %r{t.float\s+"unsigned_float",\s+limit: 24,\s+unsigned: true$}, schema
assert_match %r{t.decimal\s+"unsigned_decimal",\s+precision: 10,\s+scale: 2,\s+unsigned: true$}, schema
end