- What is the difference between
new
andcreate
for a model?
new makes the model, but create makes and also saves
- What command followed after with
Cat.new
will emulate the same behavior asCat.create
?
Cat.save
- What is the default integer column that exists on every table but we did NOT define?
ID
- What single line of ruby code can insert a cat with the name "Kira" in the database?
Cat.create(name:"kira")
- How did you like this homework in comparison with the previous homeworks?
This homework was longer than anticipated. Even with the walkthroughs things were pretty open ended in regards to approaches. I think I learned a little more, but was also found it more frustrating.