aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-02-23 15:36:48 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-02-23 15:36:48 -0300
commitacb12d3f4ff80cf8cf7c6739b888e267110c6d30 (patch)
tree450cfbddabae32d42160d7eec0c5e7b41ce6377b /activerecord/test
parent88c3bf4c483be31bb95a6c0ad6f537a8e8aa7eee (diff)
parentb8d320c1294aa582ff34e1b15782c084edc0386b (diff)
downloadrails-acb12d3f4ff80cf8cf7c6739b888e267110c6d30.tar.gz
rails-acb12d3f4ff80cf8cf7c6739b888e267110c6d30.tar.bz2
rails-acb12d3f4ff80cf8cf7c6739b888e267110c6d30.zip
Merge pull request #17631 from kamipo/bigint_pk_support
Allow limit option for MySQL bigint primary key support.
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/primary_keys_test.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/activerecord/test/cases/primary_keys_test.rb b/activerecord/test/cases/primary_keys_test.rb
index b45fbf0143..1ea1ef5e12 100644
--- a/activerecord/test/cases/primary_keys_test.rb
+++ b/activerecord/test/cases/primary_keys_test.rb
@@ -282,5 +282,15 @@ if current_adapter?(:PostgreSQLAdapter, :MysqlAdapter, :Mysql2Adapter)
assert_match %r{create_table "widgets", id: :bigint}, schema
end
end
+
+ if current_adapter?(:MysqlAdapter, :Mysql2Adapter)
+ test "primary key column type with options" do
+ @connection.create_table(:widgets, id: :primary_key, limit: 8, force: true)
+ column = @connection.columns(:widgets).find { |c| c.name == 'id' }
+ assert column.auto_increment?
+ assert_equal :integer, column.type
+ assert_equal 8, column.limit
+ end
+ end
end
end