I am building an abstract table model for tables in PHP. The thing is due to need of flexibility, I store a field in table as JSON field. So I can keep flexible data in the.
While I am defining the model, I get into need to write a pack and unpack methods for each table to properly control that JSON field.
What I wonder is, how it is defined in ActiveRecord in Ruby on Rails to manage this problem. I google it, though generally serialisation and deserialisation of whole record is shown in search results.
