Haha-Yes/migrations/20200318011556-create-command-block.js
Loic Bersier f5038a45f1 eslint do your thing
Signed-off-by: loicbersier <loic.bersier1@gmail.com>
2020-04-30 22:20:07 +02:00

30 lines
No EOL
577 B
JavaScript

'use strict';
module.exports = {
up: (queryInterface, Sequelize) => {
return queryInterface.createTable('commandBlocks', {
id: {
allowNull: false,
autoIncrement: true,
primaryKey: true,
type: Sequelize.INTEGER
},
serverID: {
type: Sequelize.BIGINT
},
command: {
type: Sequelize.STRING
},
createdAt: {
allowNull: false,
type: Sequelize.DATE
},
updatedAt: {
allowNull: false,
type: Sequelize.DATE
}
});
},
down: (queryInterface, Sequelize) => {
return queryInterface.dropTable('commandBlocks');
}
};