I have some fields that are related to other fields and I think to put it in one database column will be much cleaner.
For example lets say I have these fields:
parking_available:boolean paid_parking:boolean free_parking:boolean parking_price:integer and reservation_required:boolean
So if I use arrays,json or hstore then I may store and fetch the values for above parameters in order as strings without considering the datatypes. But I am confused on which one is better here or stick with the individual database fields. Could someone explain the use cases for arrays,json and hstore and performace benefits of these?