| Field | Datatype |
|---|---|
| name | string |
| phone | string |
| address | string |
| Field | Datatype |
|---|---|
| name | string |
| animal_type | string |
| birth_date | date |
| pet_image | string |
| owner_id | integer |
http://localhost:3000/owners http://localhost:3000/pets
has_many :petsand by placing this line in the Pet class in apps/models/pet.rb
belongs_to :owners
<td><%= pet.pet_image %></td>with
<td><%= image_tag pet.pet_image, :class => 'img' %></td>