I have the following.
class Page < ActiveRecord::Base belongs_to :category serialize :fields end
The value of fields wi
fields
Here is a solution you could easily adapt to your problem :
https://gist.github.com/2157877
Keeps the form super-clean and keeps the normal behaviour of an active model (nothing to add in your controller).
Cheers !