npm run sequelize db:migrate:all
-
-
Save JuanmeGarcia/d62ccb32f1bcd26a3c98c92dabf5a28c to your computer and use it in GitHub Desktop.
Sequelize cli with ES6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"presets": ["es2015"], | |
"plugins": [ | |
"add-module-exports" | |
], | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require('path'); | |
module.exports = { | |
'config': path.resolve('migrations/config/babelHook.js'), | |
'migrations-path': path.resolve('migrations'), | |
'seeders-path': path.resolve('migrations/seeders'), | |
'models-path': path.resolve('migrations/models') | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// migrations/config/babelHook.js | |
require('babel-core/register'); | |
module.exports = require('./config'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// migrations/config/config.js | |
import config from 'my/app/config'; | |
const env = process.env.NODE_ENV || 'development'; | |
export default { | |
[env]: { | |
url: config.mysql.migrate, | |
dialect: 'mysql', | |
migrationStorageTableName: 'SequelizeMeta' | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// migrations/models/model.js | |
import sequelize from 'sequelize'; | |
const model = sequelize.define('foo', { | |
createdAt: { | |
type: this.sequelize.DATE, | |
allowNull: false, | |
}, | |
updatedAt: { | |
type: this.sequelize.DATE, | |
allowNull: true, | |
}, | |
}); | |
export default model; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "seqelize-with-es6", | |
"description": "Example of sequelize cli running with es6 models", | |
"version": "0.0.1", | |
"main": "index.js", | |
"contributors": [], | |
"scripts": { | |
"sequelize": "sequelize $*" | |
}, | |
"dependencies": { | |
"sequelize": "^3.30.4" | |
}, | |
"devDependencies": { | |
"babel-core": "^6.24.0", | |
"babel-plugin-add-module-exports": "^0.2.1", | |
"babel-preset-es2015": "^6.24.0", | |
"sequelize-cli": "^2.7.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment