Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 476 Bytes

File metadata and controls

15 lines (12 loc) · 476 Bytes

Upgrading Sequelize-nested-set

Upgrading to >= 1.6

Default value of levelColumnName option will be changed from level to false in the next major release. If you didn't use levelColumnName option, or it had falsable value, then you need to add this option: levelColumnName: 'level'.

const Tag = ns(sequelize, DataTypes, 'Tag', {
    // your object attributes (table columns)
}, {
    levelColumnName: 'level',
    // other your options
});