不要怂,就是干,撸起袖子干!

Commit 9ff5e667 by sdepold

don't save timestamps in sequelize meta

1 parent 1b8d16a6
Showing with 3 additions and 0 deletions
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
- [REFACTORING] renamed Model/ModelFactory/ModelFactoryManager to DAO/DAOFactory/DAOFactoryManager - [REFACTORING] renamed Model/ModelFactory/ModelFactoryManager to DAO/DAOFactory/DAOFactoryManager
- [IMPROVEMENT] `npm test` will run the test suite (thanks to gabrielfalcao) - [IMPROVEMENT] `npm test` will run the test suite (thanks to gabrielfalcao)
- [IMPROVEMENT] documentation about setting up local development environment (thanks to gabrielfalcao) - [IMPROVEMENT] documentation about setting up local development environment (thanks to gabrielfalcao)
- [REFACTORING] removed updatedAt + createdAt from SequelizeMeta
# v1.3.3 # # v1.3.3 #
- [BUG] fixed sql-event emitter in all possible locations (thanks to megshark) - [BUG] fixed sql-event emitter in all possible locations (thanks to megshark)
......
...@@ -132,6 +132,8 @@ module.exports = (function() { ...@@ -132,6 +132,8 @@ module.exports = (function() {
SequelizeMeta = self.sequelize.define('SequelizeMeta', { SequelizeMeta = self.sequelize.define('SequelizeMeta', {
from: DataTypes.STRING, from: DataTypes.STRING,
to: DataTypes.STRING to: DataTypes.STRING
}, {
timestamps: false
}) })
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!