aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema/mysql_specific_schema.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-02-29 11:53:32 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2012-02-29 11:53:32 -0800
commit5bb5780f7b2015f3f948f39e0151198591757056 (patch)
tree6cb83c3ad54a3c2fb66c3f91c32b8ff53a71904f /activerecord/test/schema/mysql_specific_schema.rb
parent72ae0b4b07ed053007460bab81d710a29624a9a7 (diff)
parentf1f2e8c80b0aba539def45d02e9f6a499989ca10 (diff)
downloadrails-5bb5780f7b2015f3f948f39e0151198591757056.tar.gz
rails-5bb5780f7b2015f3f948f39e0151198591757056.tar.bz2
rails-5bb5780f7b2015f3f948f39e0151198591757056.zip
Merge pull request #5206 from kennyj/fix_5173-32
[3-2-stable] Fix type_to_sql with text and limit on mysql/mysql2. Fix GH #3931
Diffstat (limited to 'activerecord/test/schema/mysql_specific_schema.rb')
-rw-r--r--activerecord/test/schema/mysql_specific_schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/schema/mysql_specific_schema.rb b/activerecord/test/schema/mysql_specific_schema.rb
index a0adfe3752..7d324f98c4 100644
--- a/activerecord/test/schema/mysql_specific_schema.rb
+++ b/activerecord/test/schema/mysql_specific_schema.rb
@@ -1,5 +1,5 @@
ActiveRecord::Schema.define do
- create_table :binary_fields, :force => true, :options => 'CHARACTER SET latin1' do |t|
+ create_table :binary_fields, :force => true do |t|
t.binary :tiny_blob, :limit => 255
t.binary :normal_blob, :limit => 65535
t.binary :medium_blob, :limit => 16777215