aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema/mysql2_specific_schema.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-01-29 17:02:04 +0900
committerGitHub <noreply@github.com>2019-01-29 17:02:04 +0900
commit8309cd2c68f548987b8447475c7735a19714baaa (patch)
treeef890ef187b8a19aa859953fef8e3b7e2fe3d95a /activerecord/test/schema/mysql2_specific_schema.rb
parent739f87f9a39b3e690d86335fb16d1e4654ee585a (diff)
parent1745e905a314754b65eabc5fa28671c80796f09f (diff)
downloadrails-8309cd2c68f548987b8447475c7735a19714baaa.tar.gz
rails-8309cd2c68f548987b8447475c7735a19714baaa.tar.bz2
rails-8309cd2c68f548987b8447475c7735a19714baaa.zip
Merge pull request #35071 from kamipo/text_without_limit
MySQL: Support `:size` option to change text and blob size
Diffstat (limited to 'activerecord/test/schema/mysql2_specific_schema.rb')
-rw-r--r--activerecord/test/schema/mysql2_specific_schema.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activerecord/test/schema/mysql2_specific_schema.rb b/activerecord/test/schema/mysql2_specific_schema.rb
index 61e9bc9af7..b143035213 100644
--- a/activerecord/test/schema/mysql2_specific_schema.rb
+++ b/activerecord/test/schema/mysql2_specific_schema.rb
@@ -27,6 +27,7 @@ ActiveRecord::Schema.define do
create_table :binary_fields, force: true do |t|
t.binary :var_binary, limit: 255
t.binary :var_binary_large, limit: 4095
+
t.tinyblob :tiny_blob
t.blob :normal_blob
t.mediumblob :medium_blob
@@ -36,6 +37,13 @@ ActiveRecord::Schema.define do
t.mediumtext :medium_text
t.longtext :long_text
+ t.binary :tiny_blob_2, size: :tiny
+ t.binary :medium_blob_2, size: :medium
+ t.binary :long_blob_2, size: :long
+ t.text :tiny_text_2, size: :tiny
+ t.text :medium_text_2, size: :medium
+ t.text :long_text_2, size: :long
+
t.index :var_binary
end