I use sqlite3 and sequelize.
- sqlite3 5.0
- seqeulize
My seed files
ERROR: Invalid value {
show: true,
itemAdd: true,
itemsExport: true,
itemDelete: true
}
My users-model contains:
itemList:{type:DataTypes.JSON}
My seed file:
'use strict'
module.exports = {
up: async (queryInterface, Sequelize) => {
{
await queryInterface.bulkInsert(
'users',
[
{
...,
itemsList: {
show: true,
itemAdd: true,
itemsExport: true,
itemDelete: true
},
...
],
{}
)
}
},
down: async (queryInterface, Sequelize) => {
/**
* Add commands to revert seed here.
*
* Example:
* await queryInterface.bulkDelete('People', null, {});
*/
}
}
is there anything wrong? How can I deal with JSON data with sequelize CLI?
i found the answer. if i want to import json data to my sqlite3 database, just stringify it that can help. so i change my seed file like this: