Merge pull request #34 from oboxodo/patch-1

Add missing attribute in README example
This commit is contained in:
Adam Gross 2018-02-02 09:19:48 -08:00 committed by GitHub
commit bb7bc45ba8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ $ bundle install
```ruby
class Movie
attr_accessor :id, :name, :year, :actor_ids, :owner_id
attr_accessor :id, :name, :year, :actor_ids, :owner_id, :movie_type_id
end
```