0👍
If you want to create a new model after editing, then update is not the appropriate http verb, it should be post. Since you are editing an existing model, that already has an id, but you wish to create a new model, you must remove the id, so that Rails understands that it is not already persisted.
make sense?
Source:stackexchange.com