* A key / value store column. Only available in Postgres.
| 507 | * A key / value store column. Only available in Postgres. |
| 508 | */ |
| 509 | class HSTORE extends ABSTRACT { |
| 510 | validate(value) { |
| 511 | if (!_.isPlainObject(value)) { |
| 512 | throw new sequelizeErrors.ValidationError(util.format('%j is not a valid hstore', value)); |
| 513 | } |
| 514 | return true; |
| 515 | } |
| 516 | } |
| 517 | |
| 518 | /** |
| 519 | * A JSON string column. Available in MySQL, Postgres and SQLite |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…