Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 509 Bytes

README.md

File metadata and controls

11 lines (7 loc) · 509 Bytes

rails g resource Cats name:string age:integer hobbies:string image:text

making the cats: Cats.create(name:'Franklin', age:5, hobbies:'eating toilet paper' image:'https://unsplash.com/photos/7DXQtl__9Cw')

second cat: Cat.create(name:'Solo', age:2, hobbies:'loves the scratching post' image:'https://unsplash.com/photos/a-cat-sitting-on-top-of-a-cat-tree-hgGZPMWaKjA')

third cat: Cat.create(name:'Belinda', age:10, hobbies:'biting peoples face while asleep' image:'https://unsplash.com/photos/uhnbTZC7N9k')