aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema/mysql2_specific_schema.rb
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-01-04 21:14:50 -0200
committerRafael França <rafaelmfranca@gmail.com>2016-01-04 21:14:50 -0200
commit35dd9e9f2a10d9d2f46d1c1cdd1df73f7d343d6e (patch)
tree83f0b5dce55bf54f26be261c4e844352ac7d37f8 /activerecord/test/schema/mysql2_specific_schema.rb
parent8788c7ce84619053a53db569cfbeece74daff52c (diff)
parent2f373dd916cfab568d489e2103ba71284bc3e695 (diff)
downloadrails-35dd9e9f2a10d9d2f46d1c1cdd1df73f7d343d6e.tar.gz
rails-35dd9e9f2a10d9d2f46d1c1cdd1df73f7d343d6e.tar.bz2
rails-35dd9e9f2a10d9d2f46d1c1cdd1df73f7d343d6e.zip
Merge pull request #22896 from kamipo/fix_unsigned_and_blob_or_text_column
Fix `unsigned?` and `blob_or_text_column` for Enum columns in MySQL
Diffstat (limited to 'activerecord/test/schema/mysql2_specific_schema.rb')
-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 92e0b197a7..9e1fe32c2d 100644
--- a/activerecord/test/schema/mysql2_specific_schema.rb
+++ b/activerecord/test/schema/mysql2_specific_schema.rb
@@ -55,7 +55,7 @@ SQL
ActiveRecord::Base.connection.execute <<-SQL
CREATE TABLE enum_tests (
- enum_column ENUM('text','blob','tiny','medium','long')
+ enum_column ENUM('text','blob','tiny','medium','long','unsigned')
)
SQL
end