When I use sequelize cli to do seed all,but it return error: invalid data?

667 Views Asked by At

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?

2

There are 2 best solutions below

0
On

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:

'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, {});
     */
  }
}

0
On

You need to change your itemList values and put it in string like this.

'{
   "show": true,
   "itemAdd": "true",
   "itemsExport": "true",
   "itemDelete": "true",
}'

Check this link. Error seeding JSON data with sequelize into PostgreSQL database