Using Postgres 9.1, SqlAlchemy 0.8.
I need to store information like
[
[10, 'liters', 'tea'],
[20, 'milliliters', 'salt'],
]
as one column into Postgres.
What is the best way to do this? Of course I use a second table with a 1:N relationship....
I am thinking about using the Postgres Array type for this...is there a better option?
Right now there are numeric and string values to be stored. I can of course
convert numeric values to strings if needed.
Any options?
Andreas