23 lines
454 B
JavaScript
23 lines
454 B
JavaScript
|
'use strict';
|
||
|
|
||
|
/** @type {import('sequelize-cli').Migration} */
|
||
|
module.exports = {
|
||
|
async up (queryInterface, Sequelize) {
|
||
|
/**
|
||
|
* Add altering commands here.
|
||
|
*
|
||
|
* Example:
|
||
|
* await queryInterface.createTable('users', { id: Sequelize.INTEGER });
|
||
|
*/
|
||
|
},
|
||
|
|
||
|
async down (queryInterface, Sequelize) {
|
||
|
/**
|
||
|
* Add reverting commands here.
|
||
|
*
|
||
|
* Example:
|
||
|
* await queryInterface.dropTable('users');
|
||
|
*/
|
||
|
}
|
||
|
};
|