aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2016-02-21 11:28:11 +0900
committerRyuta Kamizono <kamipo@gmail.com>2016-02-22 10:03:03 +0900
commitb8f86ae29fde93b5f1e3ab75e57e4acb48a12b78 (patch)
treea7c253fa76f6b7cdb88c5b28244d6ebd28dc8612 /activerecord/test/schema
parentfa344194a8063bda06678868e0c2327b418c75cf (diff)
downloadrails-b8f86ae29fde93b5f1e3ab75e57e4acb48a12b78.tar.gz
rails-b8f86ae29fde93b5f1e3ab75e57e4acb48a12b78.tar.bz2
rails-b8f86ae29fde93b5f1e3ab75e57e4acb48a12b78.zip
The BINARY Operator is only needed for string columns
Follow up to #13040.
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/mysql2_specific_schema.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/schema/mysql2_specific_schema.rb b/activerecord/test/schema/mysql2_specific_schema.rb
index 101e657982..5a49b38457 100644
--- a/activerecord/test/schema/mysql2_specific_schema.rb
+++ b/activerecord/test/schema/mysql2_specific_schema.rb
@@ -33,6 +33,7 @@ ActiveRecord::Schema.define do
create_table :collation_tests, id: false, force: true do |t|
t.string :string_cs_column, limit: 1, collation: 'utf8_bin'
t.string :string_ci_column, limit: 1, collation: 'utf8_general_ci'
+ t.binary :binary_column, limit: 1
end
ActiveRecord::Base.connection.execute <<-SQL