aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorYukio Mizuta <untidyhair@gmail.com>2018-05-25 17:43:28 -0700
committerYukio Mizuta <untidyhair@gmail.com>2018-06-12 07:10:09 -0700
commite0bc5b4da1882a722975b920ec912d6229a8f92e (patch)
tree7233677e729df8ddf3e498b2a7899e76a962fe2e /activerecord/test/schema
parent2f76256127d35cfbfaadf162e4d8be2d0af4e453 (diff)
downloadrails-e0bc5b4da1882a722975b920ec912d6229a8f92e.tar.gz
rails-e0bc5b4da1882a722975b920ec912d6229a8f92e.tar.bz2
rails-e0bc5b4da1882a722975b920ec912d6229a8f92e.zip
Update prefix and allow suffix options for store accessors
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/schema.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index 92ad25ef76..8bf2f93c26 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -23,6 +23,7 @@ ActiveRecord::Schema.define do
t.string :settings, null: true, limit: 1024
t.string :parent, null: true, limit: 1024
t.string :spouse, null: true, limit: 1024
+ t.string :configs, null: true, limit: 1024
# MySQL does not allow default values for blobs. Fake it out with a
# big varchar below.
t.string :preferences, null: true, default: "", limit: 1024