deepstream.io-storage-postgres icon indicating copy to clipboard operation
deepstream.io-storage-postgres copied to clipboard

Allow custom tables that don't use jsonb

Open yasserf opened this issue 5 years ago • 0 comments

Link to discussion somewhere in here https://github.com/deepstreamIO/deepstream.io-storage-postgres/pull/32

Idea is instead of doing this (in master currently):

id version val
mercedes 4 { "color": "black" }
vw 20 { "color": "red" }

we can do this:

id version color
mercedes 4 black
vw 20 red

yasserf avatar May 11 '20 04:05 yasserf