diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2017-10-23 13:10:51 -0400 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2018-03-28 13:11:01 -0400 |
commit | 3c1a8ee7d7af658eb9e4cb927559907c09d13c6c (patch) | |
tree | 2b1f0a4c72e800db18f145c6a70692d1d6c32632 /activerecord/test/schema | |
parent | fe37da4ebf227cd9b1056eed8b0a35ae86037de3 (diff) | |
download | rails-3c1a8ee7d7af658eb9e4cb927559907c09d13c6c.tar.gz rails-3c1a8ee7d7af658eb9e4cb927559907c09d13c6c.tar.bz2 rails-3c1a8ee7d7af658eb9e4cb927559907c09d13c6c.zip |
Merge pull request #30956 from CJStadler/with-lock-changed-deprecation
Fix deprecation warnings from with_lock
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r-- | activerecord/test/schema/schema.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb index b9c7d447af..350113eaab 100644 --- a/activerecord/test/schema/schema.rb +++ b/activerecord/test/schema/schema.rb @@ -347,6 +347,10 @@ ActiveRecord::Schema.define do t.string :token end + create_table :frogs, force: true do |t| + t.string :name + end + create_table :funny_jokes, force: true do |t| t.string :name end |