@heisian/sequelize-cli
Version:
The Sequelize CLI
36 lines (30 loc) • 914 B
JavaScript
;
module.exports = {
up: (queryInterface, Sequelize) => {
return queryInterface
.createTable('<%= tableName %>', {
id: {
allowNull: false,
autoIncrement: true,
primaryKey: true,
type: Sequelize.INTEGER
},
<% attributes.forEach(function(attribute) { %>
<%= attribute.fieldName %>: {
type: Sequelize.<%= attribute.dataFunction ? `${attribute.dataFunction.toUpperCase()}(Sequelize.${attribute.dataType.toUpperCase()})` : attribute.dataType.toUpperCase() %>
},
<% }) %>
<%= createdAt %>: {
allowNull: false,
type: Sequelize.DATE
},
<%= updatedAt %>: {
allowNull: false,
type: Sequelize.DATE
}
});
},
down: (queryInterface, Sequelize) => {
return queryInterface.dropTable('<%= tableName %>');
}
};