i am very new to rails . I am having a table holding all users basic information like
users(id,name,email) now i am trying to keep some additional infor
Another alternative would be to use JSON fields on the model. The migration would have something like:
create_table :events do |t| t.json 'payload' end