diff options
Diffstat (limited to 'activerecord/test/models/toy.rb')
-rw-r--r-- | activerecord/test/models/toy.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/models/toy.rb b/activerecord/test/models/toy.rb new file mode 100644 index 0000000000..79a88db0da --- /dev/null +++ b/activerecord/test/models/toy.rb @@ -0,0 +1,4 @@ +class Toy < ActiveRecord::Base + set_primary_key :toy_id + belongs_to :pet +end |