不要怂,就是干,撸起袖子干!

Commit 5a900801 by Mick Hansen

Merge pull request #2523 from sddhhanover/patch-1

Add JSONB support to data-types.js
2 parents c32d9367 e67fd5b5
Showing with 5 additions and 0 deletions
...@@ -407,6 +407,11 @@ module.exports = { ...@@ -407,6 +407,11 @@ module.exports = {
* A JSON string column. Only available in postgres. * A JSON string column. Only available in postgres.
*/ */
JSON: 'JSON', JSON: 'JSON',
/*
* A pre-processed JSON data column. Only available in postgres.
*/
JSONB: 'JSONB',
/** /**
* A virtual value that is not stored in the DB. This could for example be useful if you want to provide a default value in your model * A virtual value that is not stored in the DB. This could for example be useful if you want to provide a default value in your model
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!