I do a create on an Active Record model in a controller and it’s doing
something strange. It’s primary key (id) is nil, created/updated are
nil as well.
A few of the columns/attributes are nil as well. The model instance
gets created but the id is nil.
Rspec fails for the model because its id is nil (because it’s being
passed to other models)
On Wednesday, October 1, 2014 2:18:42 AM UTC+1, Ruby-Forum.com User
wrote:
I do a create on an Active Record model in a controller and it’s doing
something strange. It’s primary key (id) is nil, created/updated are
nil as well.
That sounds like the model wasn’t saved. Probably a failed validation or
a
before_save that returned false.