so with Postgres I am able to use the json-type column. So with classic relational database I use Class Table Inheritance, which seems cumberstone. Instead I can now use Postgres and just serialize my different subclasses into json and store them in a common table.
Does this approach have any considerable downsides or is it good to use (at least for "simple" use-cases)?