написать при создании столбца?
что вы потом с этим json делать собираетесь? так то можно и в varchar \ text хранить.
Если просто хранить, то и json вроде как достаточно. А если индексировать, какие-то элементы добавлять/удалять, то для этого jsonb, насколько я понял из чтения доки. The json and jsonb data types accept almost identical sets of values as input. The major practical difference is one of efficiency. The json data type stores an exact copy of the input text, which processing functions must reparse on each execution; while jsonb data is stored in a decomposed binary format that makes it slightly slower to input due to added conversion overhead, but significantly faster to process, since no reparsing is needed. jsonb also supports indexing, which can be a significant advantage.
В большынстве случаев — лучшэ нет, лучшэ создать реляцыонные поля/ таблички для значений из json.
Обсуждают сегодня