public inbox for [email protected]help / color / mirror / Atom feed
Re: Database schema for "custom fields" 3+ messages / 3 participants [nested] [flat]
* Re: Database schema for "custom fields" @ 2024-09-10 07:08 Muhammad Usman Khan <[email protected]> 2024-09-10 09:11 ` Re: Database schema for "custom fields" Peter J. Holzer <[email protected]> 0 siblings, 1 reply; 3+ messages in thread From: Muhammad Usman Khan @ 2024-09-10 07:08 UTC (permalink / raw) To: Matthias Leisi <[email protected]>; +Cc: pgsql-general Hi, There is not a properly defined solution but you can try the Entity-Attribute-Value (EAV) Model. This is an alternative approach, where a separate table is used to store custom fields as attributes for each record. New fields can be added without altering the schema. There will be no need for DDL changes. There might be some cons as you might need multiple joins to retrieve all fields for a given record. On Tue, 10 Sept 2024 at 11:57, Matthias Leisi <[email protected]> wrote: > I’m looking for input on a database design question. > > Suppose you have an application that allows the user to add some kind of > field to the application („custom fields“, „user defined fields“, „extended > fields“, …), which could be of different types (eg string, int, bool, date, > array of <any other type>, …), and which would have some additional > properties (like a display name or description, or some access control > flags). > > The application would need to be able to do CRUD on field content, and > potentially use them in queries („search in custom field“ or similar). It’s > not expected to be a high-transaction database, and not go beyond ~100k > records. Data integrity is more important than performance. > > > How would you design this from a DB point of view? I see a few options, > but all have some drawbacks: > > 1) Allow the application to add actual database columns to a „custom > fields table". Drawback: needs DDL privileges for the application user, > makes future schema updates potentially more difficult. Pro: „proper“ > DB-based approach, can use all features of the DB. > > 2) Use a text-based or JSON field to store the „extended“ data. Drawback: > type validation, query efficiency?. Pro: Very flexible? > > 3) Use a „data table“ with one column per potential type (fieldid, > valstring, valint, valbool, …). Drawback: complex to query, waste of > storage? Pro: use all DB features on „true“ columns, but without needing > DDL privileges. > > Are these the right drawbacks and pro arguments? Do you see other options? > > Thanks for your insights, > — Matthias > > -- > Matthias Leisi > Katzenrütistrasse 68, 8153 Rümlang > Mobile +41 79 377 04 43 > [email protected] > > ^ permalink raw reply [nested|flat] 3+ messages in thread
* Re: Database schema for "custom fields" 2024-09-10 07:08 Re: Database schema for "custom fields" Muhammad Usman Khan <[email protected]> @ 2024-09-10 09:11 ` Peter J. Holzer <[email protected]> 2024-09-10 12:08 ` Re: Database schema for "custom fields" Shaheed Haque <[email protected]> 0 siblings, 1 reply; 3+ messages in thread From: Peter J. Holzer @ 2024-09-10 09:11 UTC (permalink / raw) To: [email protected] On 2024-09-10 12:08:14 +0500, Muhammad Usman Khan wrote: > There is not a properly defined solution but you can try the > Entity-Attribute-Value (EAV) Model. This is an alternative approach, where a > separate table is used to store custom fields as attributes for each record. > New fields can be added without altering the schema. There will be no need for > DDL changes. There might be some cons as you might need multiple joins to > retrieve all fields for a given record. I think this is essentially Matthias' option 3: > On Tue, 10 Sept 2024 at 11:57, Matthias Leisi <[email protected]> wrote: > > I’m looking for input on a database design question. > > Suppose you have an application that allows the user to add some kind of > field to the application („custom fields“, „user defined fields“, „extended > fields“, …), which could be of different types (eg string, int, bool, date, > array of <any other type>, …), and which would have some additional > properties (like a display name or description, or some access control > flags). [...] > How would you design this from a DB point of view? I see a few options, but > all have some drawbacks: [...] > 3) Use a „data table“ with one column per potential type (fieldid, > valstring, valint, valbool, …). Drawback: complex to query, waste of > storage? Pro: use all DB features on „true“ columns, but without needing > DDL privileges. > Are these the right drawbacks and pro arguments? Do you see other options? I pretty much agree with your analysis. I used to use your option 3 a lot, mostly because I thought that the schema should be fixed at design time and not changed by the application. I'm less dogmatic now and would probably lean more to your option 1 (let the application add columns to an "extension table"). hp -- _ | Peter J. Holzer | Story must make more sense than reality. |_|_) | | | | | [email protected] | -- Charles Stross, "Creative writing __/ | http://www.hjp.at/ | challenge!" Attachments: [application/pgp-signature] signature.asc (833B, 2-signature.asc) download ^ permalink raw reply [nested|flat] 3+ messages in thread
* Re: Database schema for "custom fields" 2024-09-10 07:08 Re: Database schema for "custom fields" Muhammad Usman Khan <[email protected]> 2024-09-10 09:11 ` Re: Database schema for "custom fields" Peter J. Holzer <[email protected]> @ 2024-09-10 12:08 ` Shaheed Haque <[email protected]> 0 siblings, 0 replies; 3+ messages in thread From: Shaheed Haque @ 2024-09-10 12:08 UTC (permalink / raw) To: [email protected] The relational purists will gave their concerns, but especially given what you described about your performance and volumetrics, there is a reason why JSON(b) is a thing. For type checking, and more, I've had success a multi-key approach so that one entry might comprise: - A "name" - A "type" - A "value" Of course you can add more as needed. On Tue, 10 Sep 2024, 10:11 Peter J. Holzer, <[email protected]> wrote: > On 2024-09-10 12:08:14 +0500, Muhammad Usman Khan wrote: > > There is not a properly defined solution but you can try the > > Entity-Attribute-Value (EAV) Model. This is an alternative approach, > where a > > separate table is used to store custom fields as attributes for each > record. > > New fields can be added without altering the schema. There will be no > need for > > DDL changes. There might be some cons as you might need multiple joins to > > retrieve all fields for a given record. > > I think this is essentially Matthias' option 3: > > > On Tue, 10 Sept 2024 at 11:57, Matthias Leisi <[email protected]> > wrote: > > > > I’m looking for input on a database design question. > > > > Suppose you have an application that allows the user to add some > kind of > > field to the application („custom fields“, „user defined fields“, > „extended > > fields“, …), which could be of different types (eg string, int, > bool, date, > > array of <any other type>, …), and which would have some additional > > properties (like a display name or description, or some access > control > > flags). > [...] > > How would you design this from a DB point of view? I see a few > options, but > > all have some drawbacks: > [...] > > 3) Use a „data table“ with one column per potential type (fieldid, > > valstring, valint, valbool, …). Drawback: complex to query, waste of > > storage? Pro: use all DB features on „true“ columns, but without > needing > > DDL privileges. > > > > Are these the right drawbacks and pro arguments? Do you see other > options? > > I pretty much agree with your analysis. I used to use your option 3 a > lot, mostly because I thought that the schema should be fixed at design > time and not changed by the application. I'm less dogmatic now and would > probably lean more to your option 1 (let the application add columns to > an "extension table"). > > hp > > -- > _ | Peter J. Holzer | Story must make more sense than reality. > |_|_) | | > | | | [email protected] | -- Charles Stross, "Creative writing > __/ | http://www.hjp.at/ | challenge!" > ^ permalink raw reply [nested|flat] 3+ messages in thread
end of thread, other threads:[~2024-09-10 12:08 UTC | newest] Thread overview: 3+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2024-09-10 07:08 Re: Database schema for "custom fields" Muhammad Usman Khan <[email protected]> 2024-09-10 09:11 ` Peter J. Holzer <[email protected]> 2024-09-10 12:08 ` Shaheed Haque <[email protected]>
This inbox is served by agora; see mirroring instructions for how to clone and mirror all data and code used for this inbox