Postgres has a lot of support for JSON (even indexing). I want to just put 1 jsonb field called everything instead of defining of bunch of typed columns (mongodb style).
But I assume this is a bad idea. My question is: Why shouldn't I do this? Is the only con just the fact that it'll probably take extra storage space?
(My table has a lot of optional fields which is why I want to do this)