POST to create a new item, PUT to update an item.. but what if there's only one item in the database?
Do I code: 'if item already exists, find it and PUT' else 'POST'
or am I missing something very obvious?
I briefly thought of doing post everytime, and on the first line of the post just delete everything, then post, but that seems dumb