aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2016-01-31 01:07:02 +0900
committerRyuta Kamizono <kamipo@gmail.com>2016-01-31 01:07:02 +0900
commitd0054b490848fa80f6c2036bd4e4b45293d16394 (patch)
tree16f7fca0abb89bac6776be92f1c33e3f7805e604 /activerecord/test/schema
parentc4d85dfbc71043e2a746acd310e32f4f04db801a (diff)
downloadrails-d0054b490848fa80f6c2036bd4e4b45293d16394.tar.gz
rails-d0054b490848fa80f6c2036bd4e4b45293d16394.tar.bz2
rails-d0054b490848fa80f6c2036bd4e4b45293d16394.zip
Fix `bigint?` for Enum columns in MySQL
Follow up to #22896.
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/mysql2_specific_schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/schema/mysql2_specific_schema.rb b/activerecord/test/schema/mysql2_specific_schema.rb
index 701e6f45b3..16ff6de24d 100644
--- a/activerecord/test/schema/mysql2_specific_schema.rb
+++ b/activerecord/test/schema/mysql2_specific_schema.rb
@@ -62,7 +62,7 @@ SQL
ActiveRecord::Base.connection.execute <<-SQL
CREATE TABLE enum_tests (
- enum_column ENUM('text','blob','tiny','medium','long','unsigned')
+ enum_column ENUM('text','blob','tiny','medium','long','unsigned','bigint')
)
SQL
end