Git Product home page Git Product logo

Comments (3)

alirizwan avatar alirizwan commented on June 9, 2024

can you please send me these files so while reproducing i don't have to write all of it? Meanwhile I will try to recreate using a similar model to the one you have up there. Fortunately this feature is being used in production so there are less chances that its breaking it but still I think it's a bug that if paranoid is not present it shouldn't throw this error.

For now you can use this option in your model to make it work:

.....
{
tableName: 'category',
paranoid: false
}

from graphcraft.

erickml avatar erickml commented on June 9, 2024

My model is:
module.exports = function(sequelize, DataTypes) {
return sequelize.define('category', {
id: {
type: DataTypes.BIGINT,
allowNull: false,
primaryKey: true
},
name: {
type: DataTypes.STRING(55),
allowNull: false
},
created_at: {
type: DataTypes.DATE,
allowNull: false
},
created_by: {
type: DataTypes.STRING(45),
allowNull: false
},
updated_at: {
type: DataTypes.DATE,
allowNull: false
},
updated_by: {
type: DataTypes.STRING(45),
allowNull: false
}
}, {
tableName: 'category',
timestamps: false,
underscored: false,
paranoid: false
});
};
The model already has the attribute paranoid.

from graphcraft.

erickml avatar erickml commented on June 9, 2024

Databaje.js

import Sequelize from 'sequelize'
import fs from 'fs'
import path from 'path'

class Database {

constructor(props) {
this.db_host = props.DB_HOST
this.db_name = props.DB_NAME
this.db_user = props.DB_USER
this.db_password = props.DB_PASSWORD
this.db_dialect = props.DB_DIALECT
this.sequelize = null
}

getConnection() {
this.sequelize = new Sequelize(this.db_name, this.db_user, this.db_password, {
host: this.db_host,
dialect: this.db_dialect,
});
this.setModels()
return this.sequelize
}

setModels() {
fs.readdirSync(path.join(__dirname, 'models')).forEach(file => {
if (file.search('.js') >= 0) {
this.sequelize.import(path.join(__dirname, 'models') + '/' + file)
}
})
}

}

export default Database

from graphcraft.

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.