Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAdriana Cabrera
14,618 PointsActive Record Associations in Rails Challenge Task 1 of 1
Active Record Associations in Rails Challenge Task 1 of 1 We're working on an application for a veterinarian's office. Update this Owner model class to specify that an Owner "has many" instances of the Pet model.
1 Answer
Jeremiah Shafer
12,388 PointsCan you reference the point in the tutorial you're talking about, please?
Also, please use the language markup so the code shows up properly.
Thanks!
Adriana Cabrera
14,618 PointsAdriana Cabrera
14,618 Pointsclass Owner < ApplicationRecord has_many :pets end