We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
private setupDatabase(): void { this.db = this.app.context.db = new Sequelize({ ...this.config.db, modelPaths: [ this.config.app.modelsDir ], define: { timestamps: true, underscored: true, freezeTableName: true, charset: 'utf8', collate: 'utf8_general_ci', createdAt: 'created_date', updatedAt: 'updated_date', deletedAt: 'deleted_date' }, logging: this.config.db.sync.logging, sync: this.config.db.sync, validateOnly: false }); }
When i call sync() it doesn't create with created_date, updated_date....
The text was updated successfully, but these errors were encountered:
thanks for raising this... I already have an idea, why this isn't working.
Sorry, something went wrong.
dccba3c
Merge pull request #84 from RobinBuschmann/issue-68
87175bd
fixes #68
RobinBuschmann
No branches or pull requests
When i call sync() it doesn't create with created_date, updated_date....
The text was updated successfully, but these errors were encountered: