@jdpnielsen/sequelize-cli-typescript
Version:
The Sequelize CLI (TypeScript)
35 lines (29 loc) • 983 B
text/typescript
import { QueryInterface, SequelizeStatic } from 'sequelize';
export = {
up: async (queryInterface: QueryInterface, Sequelize: SequelizeStatic) => {
await 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: async (queryInterface: QueryInterface, Sequelize: SequelizeStatic) => {
await queryInterface.dropTable('<%= tableName %>');
}
};