Book a Demo

Author Topic: Postgres Data Modelling  (Read 3039 times)

Michael Albers

  • EA Novice
  • *
  • Posts: 9
  • Karma: +0/-0
    • View Profile
Postgres Data Modelling
« on: December 13, 2014, 11:12:05 pm »
Hi,

Postgresql supports arrays, but I can't find a way to model this within EA.

Example:
I have a table named people. One of the columns is AdditionalGivenNames. Since I never know how many names someone has, I would like to store an array in this column. Each value would be varchar, so if I would create the table the syntax would be

Code: [Select]
CREATE people ( AdditionalGivenNames varchar[] );

Has anybody got any experience with this?

Thanks,
Michael