diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-01-24 13:08:32 -0500 |
---|---|---|
committer | Rafael França <rafaelmfranca@gmail.com> | 2016-01-24 13:08:32 -0500 |
commit | 5119171d3927a99b73809aa29e58e8866ad07110 (patch) | |
tree | 148d57924108c741e0a7ff7b5852338b8e6ffcd9 /activerecord/test/schema | |
parent | 6b89c4a24749ed972930ad1e27308bcda48c362b (diff) | |
parent | b334bc93c6c3a37f69de9a130d43b8f1fda67e3c (diff) | |
download | rails-5119171d3927a99b73809aa29e58e8866ad07110.tar.gz rails-5119171d3927a99b73809aa29e58e8866ad07110.tar.bz2 rails-5119171d3927a99b73809aa29e58e8866ad07110.zip |
Merge pull request #23221 from vipulnsward/23209-fix-missin_source_type
Add missing source_type if provided on hmt which belongs to an sti re…
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r-- | activerecord/test/schema/schema.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb index 2e1e584156..fcc4eee79c 100644 --- a/activerecord/test/schema/schema.rb +++ b/activerecord/test/schema/schema.rb @@ -976,6 +976,8 @@ ActiveRecord::Schema.define do t.integer :employable_id t.string :employable_type t.integer :department_id + t.string :employable_list_type + t.integer :employable_list_id end create_table :recipes, force: true do |t| t.integer :chef_id |