Coder Social home page Coder Social logo

Comments (3)

bogdan-r avatar bogdan-r commented on May 24, 2024

I have the same problem. Any idea?

from sequelize-paper-trail.

ksfreitas avatar ksfreitas commented on May 24, 2024

Can you post a complete test code? May I can help...

from sequelize-paper-trail.

maiquelleonel avatar maiquelleonel commented on May 24, 2024

I fix this bug change the way of load models.
my code like this:

const sequelize = new Sequelize({
        'dialect': 'mysql',
        'host': process.env.DB_HOST,
        'port': process.env.DB_PORT,
        'username': process.env.DB_USER,
        'password': process.env.DB_PASS,
        'database': process.env.DB_NAME,
        'logging': false,
        'multipleStatements': true,
        'connectionLimit': 100
    });

    db.sequelize = sequelize;
    // Setup Revision and RevisionChange models
    let opts = {
        underscored: true,
        underscoredAttributes: true,
        enableCompression: false,
        enableMigration: true,
        revisionChangeModel: 'RevisionChange',
        enableRevisionChangeModel: true,
        userModel: 'users',
        continuationKey: 'userId'
    }
    db.users = sequelize.import(path.join(__dirname, 'models', 'users.js'))
    // Load Paper Trail
    const PaperTrail = require('sequelize-paper-trail').init(db.sequelize, opts)
    PaperTrail.defineModels(db)
    db.users.hasPaperTrail()
    
    fs.readdirSync(`${__dirname}/models`)
        .filter((file) => {
            return (file.indexOf('.') !== 0) && (file !== 'index.js') && (file !== 'users.js')
        })
        .forEach((file) => {
            let model = sequelize.import(path.join(__dirname, 'models', file))
            db[model.name] = model
        });

And error disapear!

from sequelize-paper-trail.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.