Yes ain't I the verbose one today :)
So I discovered today after much blood and tears that, even if a field is not required in my model, it will throw an exception if I try to create a new record where that particular field is empty (when I leave the text input empty on my form).
That seems strange, it can't be right, can it?
For now I have a horrible work around where I check if that field is empty at POST and create a different Model.create statement based on that check...
Could someone please shine some light on me? I must be doing something wrong here.
-M