aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema/mysql2_specific_schema.rb
diff options
context:
space:
mode:
authorkennyj <kennyj@gmail.com>2012-02-26 00:35:58 +0900
committerkennyj <kennyj@gmail.com>2012-02-26 00:35:58 +0900
commitfe7cacb5106cd240e4d18ae518fa4e56c7e4ec5d (patch)
tree2045c6e4eddf98b339051b7aa9242c9e9c20d444 /activerecord/test/schema/mysql2_specific_schema.rb
parent29054ba173c16d675545b719f018b28c6f8eef7e (diff)
downloadrails-fe7cacb5106cd240e4d18ae518fa4e56c7e4ec5d.tar.gz
rails-fe7cacb5106cd240e4d18ae518fa4e56c7e4ec5d.tar.bz2
rails-fe7cacb5106cd240e4d18ae518fa4e56c7e4ec5d.zip
Fix type_to_sql with text and limit on mysql/mysql2. Fix GH #3931.
Diffstat (limited to 'activerecord/test/schema/mysql2_specific_schema.rb')
-rw-r--r--activerecord/test/schema/mysql2_specific_schema.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/schema/mysql2_specific_schema.rb b/activerecord/test/schema/mysql2_specific_schema.rb
index ab2c7ccc10..65b6f9f227 100644
--- a/activerecord/test/schema/mysql2_specific_schema.rb
+++ b/activerecord/test/schema/mysql2_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
@@ -32,4 +32,4 @@ CREATE TABLE collation_tests (
) CHARACTER SET utf8 COLLATE utf8_general_ci
SQL
-end \ No newline at end of file
+end