diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-07-27 23:23:05 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-27 23:23:05 -0300 |
commit | 70ec7feaecab2d3f4dcb84ef2373a80d427aa336 (patch) | |
tree | 1f589c86d0706cb37d95a2d56a51758cf2244266 /activerecord/test/schema | |
parent | ea1dcbbc9965f82361f45d5b098207de738d7bb9 (diff) | |
parent | b7d229d1fabbd271fd37e9f4eac316a44d690842 (diff) | |
download | rails-70ec7feaecab2d3f4dcb84ef2373a80d427aa336.tar.gz rails-70ec7feaecab2d3f4dcb84ef2373a80d427aa336.tar.bz2 rails-70ec7feaecab2d3f4dcb84ef2373a80d427aa336.zip |
Merge pull request #25767 from kamipo/association_name_is_the_same_as_join_table_name
Correctly return `associated_table` when `associated_with?` is true
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r-- | activerecord/test/schema/schema.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb index 2f2993ce18..a5155e9cdb 100644 --- a/activerecord/test/schema/schema.rb +++ b/activerecord/test/schema/schema.rb @@ -390,6 +390,11 @@ ActiveRecord::Schema.define do t.integer :ideal_reference_id end + create_table :jobs_pool, force: true, id: false do |t| + t.references :job, null: false, index: true + t.references :user, null: false, index: true + end + create_table :keyboards, force: true, id: false do |t| t.primary_key :key_number t.string :name |