aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-10-23 13:10:51 -0400
committerRafael Mendonça França <rafaelmfranca@gmail.com>2018-03-28 13:11:01 -0400
commit3c1a8ee7d7af658eb9e4cb927559907c09d13c6c (patch)
tree2b1f0a4c72e800db18f145c6a70692d1d6c32632 /activerecord/test/schema
parentfe37da4ebf227cd9b1056eed8b0a35ae86037de3 (diff)
downloadrails-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.rb4
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