I'm a long term user of SQL considering a switch to CQL & PostgreSQL. This is because I understand PostgreSQL 9.4 supports dynamic metadata and if it is what I think it is, this would make life easier for an app I'm developing.
I need to store key data about each field. This includes: where the field sits within a hierarchy and what front-end form item should be used as default to show the data (e.g. dropdown). These things will occasionally be updated.
Normally I would store these data in a separate table, but in this app, the user can add tables and extend existing ones. It would be amazing if I could store the data within the field definition instead of trying to keep two sets of tables in sync (in fact three, because of audit tables).
Is it possible to do what I want to do with 9.4, and can anyone tell me the right search term (because 'dynamic metadata postgreSQL' is returning 'dynamic SQL' results half the time).
Many thanks
Emma