diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-05-20 21:35:58 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-05-20 21:35:58 -0300 |
commit | 9a1abedcdeecd9464668695d4f9c1d55a2fd9332 (patch) | |
tree | 287c625ff80dc7feeddea2dcb5a59ce6783a9cd3 /activerecord/test/fixtures | |
parent | c72d6c91a7c0c2dc81cc857a1d6db496e84e0065 (diff) | |
parent | 9c3afdc327132c7f1f4d05eebc0c05b715442e7d (diff) | |
download | rails-9a1abedcdeecd9464668695d4f9c1d55a2fd9332.tar.gz rails-9a1abedcdeecd9464668695d4f9c1d55a2fd9332.tar.bz2 rails-9a1abedcdeecd9464668695d4f9c1d55a2fd9332.zip |
Merge pull request #14544 from jefflai2/named_scope_sti
Fixes Issue #13466.
Conflicts:
activerecord/CHANGELOG.md
Diffstat (limited to 'activerecord/test/fixtures')
-rw-r--r-- | activerecord/test/fixtures/ratings.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/activerecord/test/fixtures/ratings.yml b/activerecord/test/fixtures/ratings.yml index 34e208efa3..2b45c5080e 100644 --- a/activerecord/test/fixtures/ratings.yml +++ b/activerecord/test/fixtures/ratings.yml @@ -2,13 +2,23 @@ normal_comment_rating: id: 1 comment_id: 8 value: 1 + type: Rating special_comment_rating: id: 2 comment_id: 6 value: 1 + type: Rating sub_special_comment_rating: id: 3 comment_id: 12 value: 1 + type: Rating + +special_rating: + id: 4 + comment_id: 10 + value: 1 + type: SpecialRating + special_comment_id: 3 |